feat: Ability to provide extra env variables in Helm (#961)

Closes #960
This commit is contained in:
JoeKer1
2024-11-27 11:39:58 +01:00
committed by GitHub
parent 47c0ff9f69
commit 95a50d059a
3 changed files with 29 additions and 2 deletions
+14 -1
View File
@@ -69,7 +69,7 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
# Used to set planka BASE_URL if no `baseurl` is provided.
# Used to set planka BASE_URL if no `baseurl` is provided.
- host: planka.local
paths:
- path: /
@@ -197,3 +197,16 @@ oidc:
##
roles: []
# - planka-admin
## Extra environment variables for planka deployment
## Supports hard coded and getting values from a k8s secret
## - name: test
## value: valuetest
## - name: another
## value: another
## - name: test-secret
## valueFrom:
## secretName: k8s-secret-name
## key: key-inside-the-secret
##
extraEnv: []