Skip to content

Commit

Permalink
Merge pull request #628 from brianirish/main
Browse files Browse the repository at this point in the history
Support for tolerations and nodeSelector in Helm Chart
  • Loading branch information
alexandrevilain committed Jan 28, 2024
2 parents f537182 + 8d8c1bc commit 1b5d2bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/temporal-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.2.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.16.1"
appVersion: "v0.16.2"
4 changes: 3 additions & 1 deletion charts/temporal-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,6 @@ spec:
- name: cert
secret:
defaultMode: 420
secretName: webhook-server-cert
secretName: webhook-server-cert
nodeSelector: {{ toYaml .Values.manager.nodeSelector | nindent 8 }}
tolerations: {{ toYaml .Values.manager.tolerations | nindent 8 }}
2 changes: 2 additions & 0 deletions charts/temporal-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ manager:
# -- Service account settings for the controller manager container.
serviceAccount:
annotations: {}
nodeSelector: {}
tolerations: []

webhook:
ports:
Expand Down

0 comments on commit 1b5d2bf

Please sign in to comment.