mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #5662 from hickeyma/fix-scaffold-chart-image
fix(chartutil): Scaffold chart fails to deploy pod
This commit is contained in:
commit
75624afb73
1 changed files with 2 additions and 2 deletions
|
|
@ -73,7 +73,7 @@ version: 0.1.0
|
|||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application.
|
||||
appVersion: 0.1.0
|
||||
appVersion: 1.16.0
|
||||
`
|
||||
|
||||
const defaultValues = `# Default values for %s.
|
||||
|
|
@ -211,7 +211,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Release.AppVersion }}"
|
||||
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
ports:
|
||||
- name: http
|
||||
|
|
|
|||
Loading…
Reference in a new issue