Skip to content

Commit

Permalink
fix init container bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kahnwong committed Apr 13, 2024
1 parent 479dc53 commit a392b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/charts/base/chart/templates/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
app.kubernetes.io/name: {{ template "name" . }}
spec:
{{ if .Values.initContainers }}
initContainers: {{ toYaml .Values.deployments.initContainers | default list | nindent 8 }}
initContainers: {{ toYaml .Values.initContainers | default list | nindent 8 }}
{{ end }}
containers:
{{ range .Values.containers }}
Expand Down

0 comments on commit a392b7b

Please sign in to comment.