Skip to content

Commit

Permalink
fix(charts): tolerations is an array
Browse files Browse the repository at this point in the history
The tolerations field in values.yaml should be an array instead of
object, to allow users to set tolerations.

Bug: #153
  • Loading branch information
KLuuKer authored and terinjokes committed Nov 24, 2024
1 parent 90bab59 commit 9f468f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/charts/origin-ca-issuer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
type: application
name: origin-ca-issuer
version: 0.5.10
version: 0.5.11
appVersion: 0.11.0
description: A Helm chart for origin-ca-issuer
home: https://github.com/cloudflare/origin-ca-issuer
Expand Down
6 changes: 5 additions & 1 deletion deploy/charts/origin-ca-issuer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ controller:

# Optional pod tolerations.
# ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#toleration-v1-core
tolerations: {}
# tolerations:
# - key: "CriticalAddonsOnly"
# operator: "Exists"
# effect: "NoSchedule"
tolerations: []

certmanager:
namespace: cert-manager
Expand Down

0 comments on commit 9f468f3

Please sign in to comment.