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

89 lines
1.8 KiB
YAML
Raw Normal View History

apiVersion: helm.toolkit.fluxcd.io/v2beta2
2023-04-25 22:09:26 -04:00
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"
2023-04-25 22:09:26 -04:00
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
envFrom:
- secretRef:
2023-04-25 22:11:52 -04:00
name: gitea-secret
2023-04-25 22:09:26 -04:00
2023-04-27 20:34:37 -04:00
# Sidecar used for mirroring GitHub repos to gitea
sidecars:
mirror-to-gitea:
image: jaedle/mirror-to-gitea:latest
imagePullPolicy: Always
envFrom:
- secretRef:
name: gitea-sidecar-secret
2023-04-25 22:09:26 -04:00
service:
main:
ports:
http:
port: 3000
ssh:
enabled: true
2023-04-27 20:45:43 -04:00
type: NodePort
2023-04-25 22:09:26 -04:00
ports:
ssh:
enabled: true
port: 22
protocol: TCP
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
2023-09-19 18:02:15 -04:00
mountPath: /data
dumps:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/gitea-dumps
mountPath: /dumps