56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
# helm repo add gitea-charts https://dl.gitea.io/charts/
|
|
# helm install gitea gitea-charts/gitea
|
|
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChart
|
|
metadata:
|
|
name: gitea
|
|
namespace: git
|
|
spec:
|
|
chart: gitea
|
|
targetNamespace: git
|
|
repo: https://dl.gitea.io/charts/
|
|
# https://gitea.com/gitea/helm-chart/releases
|
|
version: 10.6.0
|
|
valuesContent: |-
|
|
resources:
|
|
limits:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
requests:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
gitea:
|
|
admin:
|
|
existingSecret: gitea-admin-secret
|
|
email: keligrubb324@gmail.com
|
|
metrics:
|
|
enabled: true
|
|
serviceMonitor:
|
|
enabled: true
|
|
config:
|
|
picture:
|
|
ENABLE_FEDERATED_AVATAR: false
|
|
DISABLE_GRAVATAR: true
|
|
actions:
|
|
ENABLED: true
|
|
service:
|
|
ssh:
|
|
port: 22
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
hosts:
|
|
- host: git.keligrubb.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-cluster-issuer"
|
|
tls:
|
|
- secretName: gitea-tls
|
|
hosts:
|
|
- git.keligrubb.com
|
|
persistence:
|
|
storageClass: longhorn
|
|
size: 64Gi
|