Skip to content

Commit

Permalink
Update default values (#309)
Browse files Browse the repository at this point in the history
Updating some of the default values to match how they're used in
the templates.
  • Loading branch information
tvoran authored May 20, 2020
1 parent dd8e3a2 commit 7b74429
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ server:
# See https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
updateStrategyType: "OnDelete"

resources:
resources: {}
# resources:
# requests:
# memory: 256Mi
Expand Down Expand Up @@ -159,12 +159,12 @@ server:
authDelegator:
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
# write out configuration files in a dynamic way.
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

# shareProcessNamespace enables process namespace sharing between Vault and the extraContainers
Expand Down Expand Up @@ -226,21 +226,20 @@ server:
# Toleration Settings for server pods
# This should be a multi-line string matching the Toleration array
# in a PodSpec.
tolerations: {}
tolerations: null

# nodeSelector labels for server pod assignment, formatted as a muli-line string.
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
# Example:
# nodeSelector: |
# beta.kubernetes.io/arch: amd64
nodeSelector: {}
nodeSelector: null

# Priority class for server pods
priorityClassName: ""

# Extra labels to attach to the server pods
# This should be a multi-line string mapping directly to the a map of
# the labels to apply to the server pods
# This should be a YAML map of the labels to apply to the server pods
extraLabels: {}

# Extra annotations to attach to the server pods
Expand Down

0 comments on commit 7b74429

Please sign in to comment.