Skip to content

Commit

Permalink
Bug fix for helm template (#20)
Browse files Browse the repository at this point in the history
Helm template Deployment has `resources` place at `Deployment.spec.template.spec.resources` where if should be at `Deployment.spec.template.spec.containers[0].resources` instead
  • Loading branch information
edfungus authored and aknysh committed Jul 13, 2019
1 parent fb2d052 commit 2087b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
key: {{ $name | quote }}
{{- end }}
{{- end }}
resources:
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down

0 comments on commit 2087b3a

Please sign in to comment.