stackspout/basic/apps/code/gitea-values-configmap.yaml

45 lines
1.1 KiB
YAML
Raw Normal View History

apiVersion: v1
kind: ConfigMap
metadata:
name: stackspin-gitea-values
namespace: stackspout
data:
values.yaml: |
ingress:
enabled: true
2022-06-30 13:37:48 +00:00
annotations:
kubernetes.io/tls-acme: "true"
kubernetes.io/proxy-body-size: "500m"
hosts:
- host: "code.${domain}"
paths:
- path: /
pathType: Prefix
tls:
- secretName: gitea-tls
hosts:
- "code.${domain}"
service:
ssh:
annotations:
metallb.universe.tf/allow-shared-ip: gitea
2022-06-28 10:42:58 +00:00
gitea:
oauth:
- name: Stackspin
2022-06-30 13:37:48 +00:00
provider: "openidConnect"
2022-06-29 21:33:54 +00:00
key: "${client_id}"
2022-06-28 10:42:58 +00:00
secret: "${client_secret}"
2022-06-30 13:37:48 +00:00
autoDiscoverUrl: "https://sso.${domain}/.well-known/openid-configuration"
config:
server:
ROOT_URL: "https://code.${domain}"
2022-08-03 21:27:08 +00:00
log:
LEVEL: "Trace"
2022-07-04 10:18:51 +00:00
persistence:
enabled: true
existingClaim: gitea-data
postgresql:
persistence:
enabled: true
existingClaim: gitea-postgres