Skip to content

Commit

Permalink
Correct tolerations placement in deployment
Browse files Browse the repository at this point in the history
Fix improper tolerations configuration in kubearmorOperator Deployment

The tolerations setting was placed incorrectly in the Deployment spec. 
This update relocates it to the correct section, allowing for intended 
functionality when deploying the operator.
  • Loading branch information
adambethuggin authored Feb 5, 2025
1 parent 7fb477a commit cd9d707
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
imagePullSecrets:
{{ toYaml .Values.kubearmorOperator.image.imagePullSecrets | indent 6 }}
{{- end }}
{{- if .Values.kubearmorOperator.image.tolerations }}
{{- if .Values.kubearmorOperator.tolerations }}
tolerations:
{{ toYaml .Values.kubearmorOperator.tolerations | indent 6 }}
{{- end }}
Expand Down

0 comments on commit cd9d707

Please sign in to comment.