Skip to content

Commit

Permalink
Add tolerations and nodeSelector to server-acl-[init|cleanup] jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Eckert committed Oct 3, 2022
1 parent 12d85fd commit 7c33284
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions charts/consul/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,25 @@ global:
# @type: string
secretKey: null

# job configures settings for the server-acl-init and server-acl-cleanup jobs
job:
# tolerations configures the taints and tolerations for the server-acl-init
# and server-acl-cleanup jobs. This should be a multi-line string matching the
# Tolerations (https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) array in a Pod spec.
tolerations: ""

# This value defines `nodeSelector` (https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
# labels for the server-acl-init and server-acl-cleanup jobs pod assignment, formatted as a multi-line string.
#
# Example:
#
# ```yaml
# nodeSelector: |
# beta.kubernetes.io/arch: amd64
# ```
#
# @type: string
nodeSelector: null

# [Enterprise Only] This value refers to a Kubernetes or Vault secret that you have created
# that contains your enterprise license. It is required if you are using an
Expand Down

0 comments on commit 7c33284

Please sign in to comment.