Skip to content

Commit

Permalink
Merge pull request #121 from anisimovdk/add-nodeSelector-to-helmchart
Browse files Browse the repository at this point in the history
feat: add nodeSelector to helm chart
  • Loading branch information
dkhachyan committed Aug 30, 2023
2 parents 5e3e590 + ab4b80f commit a9aaa8a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions helm/charts/vector-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ spec:
labels:
{{- include "chart.selectorLabels" . | nindent 8 }}
spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 2 additions & 0 deletions helm/charts/vector-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ strategy: {}

imagePullSecrets: []

nodeSelector: {}

securityContext: {}
# allowPrivilegeEscalation: false
# runAsGroup: 1000
Expand Down

0 comments on commit a9aaa8a

Please sign in to comment.