k3s-cluster/cluster/apps/default/gitea/helm-release.yaml

80 lines
1.6 KiB
YAML
Raw Normal View History

2023-04-25 22:09:26 -04:00
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: gitea
namespace: default
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: gitea/gitea
tag: 1.19.0
podLabels:
needsDatabase: "yes"
2023-04-25 22:23:20 -04:00
needsAuthentik: "yes"
2023-04-25 22:09:26 -04:00
env:
USER_UID: 1000
USER_GID: 1000
GITEA__database__DB_TYPE: postgres
GITEA__database__HOST: postgresql.database:5432
GITEA__database__NAME: gitea
GITEA__database__USER: gitea
GITEA__database__PASSWD: gitea
envFrom:
- secretRef:
2023-04-25 22:11:52 -04:00
name: gitea-secret
2023-04-25 22:09:26 -04:00
service:
main:
ports:
http:
port: 3000
ssh:
enabled: true
ports:
ssh:
enabled: true
port: 22
protocol: TCP
targetPort: 2223
nodePort: 30022
probes:
liveness:
enabled: false
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
2023-04-25 22:18:01 -04:00
- host: &host "git.${SECRET_NEW_DOMAIN}"
2023-04-25 22:09:26 -04:00
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
2023-04-25 22:14:20 -04:00
secretName: wildcard-main-tls
persistence:
storage:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/gitea
mountPath: /gitea