Skip to content
This repository was archived by the owner on Jun 18, 2025. It is now read-only.

Add nodeSelector #51

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions templates/sync-workspace-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ spec:
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 5
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
{{- if .Values.CACerts}}
- name: cacert
Expand Down
2 changes: 2 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ tests:
# CACerts can be set like this:
# helm install <other parameters> --set-file CACerts=/path/to/certs.pem
CACerts: ""

nodeSelector: {}