Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit 2087b3a

Browse files
edfungusaknysh
authored andcommitted
Bug fix for helm template (#20)
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
1 parent fb2d052 commit 2087b3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chart/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
key: {{ $name | quote }}
4444
{{- end }}
4545
{{- end }}
46-
resources:
46+
resources:
4747
{{ toYaml .Values.resources | indent 12 }}
4848
{{- with .Values.nodeSelector }}
4949
nodeSelector:

0 commit comments

Comments
 (0)