feat: add values definition for extra env var using secrets ref
This commit is contained in:
parent
043bd0114c
commit
b3d7e69046
|
@ -240,6 +240,13 @@ services:
|
|||
# -- Extra environment variables to set for apps pods. Takes a list of
|
||||
# name=value pairs.
|
||||
extraEnv: []
|
||||
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||
extraEnvFromSecret: []
|
||||
# - name: MY_SECRET_KEY
|
||||
# secretName : my-secret
|
||||
# secretKey: my-secret-key
|
||||
|
||||
# -- Startup probe configuration for apps pods. You shouldn't need to
|
||||
# change this, but if you want to you can find more information here:
|
||||
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
||||
|
@ -323,6 +330,13 @@ services:
|
|||
# -- Extra environment variables to set for automation worker pods. Takes a list of
|
||||
# name=value pairs.
|
||||
extraEnv: []
|
||||
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||
extraEnvFromSecret: []
|
||||
# - name: MY_SECRET_KEY
|
||||
# secretName : my-secret
|
||||
# secretKey: my-secret-key
|
||||
|
||||
# -- Startup probe configuration for automation worker pods. You shouldn't
|
||||
# need to change this, but if you want to you can find more information
|
||||
# here:
|
||||
|
@ -408,6 +422,13 @@ services:
|
|||
# -- Extra environment variables to set for worker pods. Takes a list of
|
||||
# name=value pairs.
|
||||
extraEnv: []
|
||||
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||
extraEnvFromSecret: []
|
||||
# - name: MY_SECRET_KEY
|
||||
# secretName : my-secret
|
||||
# secretKey: my-secret-key
|
||||
|
||||
# -- Startup probe configuration for worker pods. You shouldn't need to
|
||||
# change this, but if you want to you can find more information here:
|
||||
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
||||
|
|
Loading…
Reference in New Issue