Update default values (#309)
Updating some of the default values to match how they're used in the templates.
This commit is contained in:
parent
dd8e3a230c
commit
7b744295cf
1 changed files with 6 additions and 7 deletions
13
values.yaml
13
values.yaml
|
@ -121,7 +121,7 @@ server:
|
||||||
# See https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
|
# See https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
|
||||||
updateStrategyType: "OnDelete"
|
updateStrategyType: "OnDelete"
|
||||||
|
|
||||||
resources:
|
resources: {}
|
||||||
# resources:
|
# resources:
|
||||||
# requests:
|
# requests:
|
||||||
# memory: 256Mi
|
# memory: 256Mi
|
||||||
|
@ -159,12 +159,12 @@ server:
|
||||||
authDelegator:
|
authDelegator:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
# extraInitContainers is a list of init containers. Specified as a raw YAML string.
|
# extraInitContainers is a list of init containers. Specified as a YAML list.
|
||||||
# This is useful if you need to run a script to provision TLS certificates or
|
# This is useful if you need to run a script to provision TLS certificates or
|
||||||
# write out configuration files in a dynamic way.
|
# write out configuration files in a dynamic way.
|
||||||
extraInitContainers: null
|
extraInitContainers: null
|
||||||
|
|
||||||
# extraContainers is a list of sidecar containers. Specified as a raw YAML string.
|
# extraContainers is a list of sidecar containers. Specified as a YAML list.
|
||||||
extraContainers: null
|
extraContainers: null
|
||||||
|
|
||||||
# shareProcessNamespace enables process namespace sharing between Vault and the extraContainers
|
# shareProcessNamespace enables process namespace sharing between Vault and the extraContainers
|
||||||
|
@ -226,21 +226,20 @@ server:
|
||||||
# Toleration Settings for server pods
|
# Toleration Settings for server pods
|
||||||
# This should be a multi-line string matching the Toleration array
|
# This should be a multi-line string matching the Toleration array
|
||||||
# in a PodSpec.
|
# in a PodSpec.
|
||||||
tolerations: {}
|
tolerations: null
|
||||||
|
|
||||||
# nodeSelector labels for server pod assignment, formatted as a muli-line string.
|
# nodeSelector labels for server pod assignment, formatted as a muli-line string.
|
||||||
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
|
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
|
||||||
# Example:
|
# Example:
|
||||||
# nodeSelector: |
|
# nodeSelector: |
|
||||||
# beta.kubernetes.io/arch: amd64
|
# beta.kubernetes.io/arch: amd64
|
||||||
nodeSelector: {}
|
nodeSelector: null
|
||||||
|
|
||||||
# Priority class for server pods
|
# Priority class for server pods
|
||||||
priorityClassName: ""
|
priorityClassName: ""
|
||||||
|
|
||||||
# Extra labels to attach to the server pods
|
# Extra labels to attach to the server pods
|
||||||
# This should be a multi-line string mapping directly to the a map of
|
# This should be a YAML map of the labels to apply to the server pods
|
||||||
# the labels to apply to the server pods
|
|
||||||
extraLabels: {}
|
extraLabels: {}
|
||||||
|
|
||||||
# Extra annotations to attach to the server pods
|
# Extra annotations to attach to the server pods
|
||||||
|
|
Loading…
Reference in a new issue