47 lines
934 B
YAML
47 lines
934 B
YAML
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChartConfig
|
|
metadata:
|
|
name: gitea
|
|
namespace: devops
|
|
spec:
|
|
valuesContent: |-
|
|
image:
|
|
registry: docker.io
|
|
repository: commitgo/gitea-ee
|
|
tag: 25.4.3
|
|
rootless: true
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
http:
|
|
type: ClusterIP
|
|
ssh:
|
|
type: ClusterIP
|
|
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: traefik
|
|
hosts:
|
|
- host: gitea.milasholsting.dk
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: gitea-tls
|
|
hosts:
|
|
- gitea.milasholsting.dk
|
|
|
|
gitea:
|
|
admin:
|
|
existingSecret: gitea-admin
|
|
config:
|
|
server:
|
|
DOMAIN: gitea.milasholsting.dk
|
|
ROOT_URL: https://gitea.milasholsting.dk/
|
|
|
|
persistence:
|
|
size: 20Gi
|
|
storageClass: local-path
|
|
|