Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

[TT-7498] - Add nodeSelector support #552

Merged
merged 6 commits into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 helm/templates/all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ spec:
labels:
control-plane: controller-manager
spec:
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
containers:
- args:
- --config=controller_manager_config.yaml
Expand Down
1 change: 1 addition & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ podAnnotations: {}
podSecurityContext:
allowPrivilegeEscalation: false
resources: {}
nodeSelector: {}
#specify necessary resources for kube-rbac-proxy container
rbac:
resources: {}
Expand Down