87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
controllers:
|
|
main:
|
|
strategy: Recreate
|
|
containers:
|
|
app:
|
|
env:
|
|
- name: TERRALIST_OAUTH_PROVIDER
|
|
value: oidc
|
|
- name: TERRALIST_OI_CLIENT_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: client-id
|
|
- name: TERRALIST_OI_CLIENT_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: client-secret
|
|
- name: TERRALIST_OI_AUTHORIZE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: authorize-url
|
|
- name: TERRALIST_OI_TOKEN_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: token-url
|
|
- name: TERRALIST_OI_USERINFO_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: userinfo-url
|
|
- name: TERRALIST_OI_SCOPE
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: oidc-credentials
|
|
key: scope
|
|
- name: TERRALIST_TOKEN_SIGNING_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: terralist-secret
|
|
key: token-signing-secret
|
|
- name: TERRALIST_COOKIE_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: terralist-secret
|
|
key: cookie-secret
|
|
- name: TERRALIST_URL
|
|
value: https://terralist.dev.t09.de
|
|
- name: TERRALIST_SQLITE_PATH
|
|
value: /data/db.sqlite
|
|
- name: TERRALIST_LOCAL_STORE
|
|
value: /data/modules
|
|
- name: TERRALIST_PROVIDERS_ANONYMOUS_READ
|
|
value: "true"
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: main
|
|
hosts:
|
|
- host: terralist.dev.t09.de
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
service:
|
|
identifier: main
|
|
port: http
|
|
tls:
|
|
- hosts:
|
|
- terralist.dev.t09.de
|
|
secretName: terralist-tls-secret
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
retain: false
|
|
storageClass: "csi-disk"
|
|
annotations:
|
|
everest.io/disk-volume-type: GPSSD
|
|
globalMounts:
|
|
- path: /data
|