Skip to content

Commit 67cf19c

Browse files
authored
Use correct variables in prod.yaml (#518)
1 parent 462eeaa commit 67cf19c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pkg/fixtures/deployments/helm/charts/production.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
2-
repository: "testapp"
3-
pullPolicy: Always
2+
repository: "testimage"
43
tag: "latest"
4+
pullPolicy: "Always"
55
service:
66
annotations: {}
77
type: LoadBalancer

template/deployments/helm/charts/production.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
2-
repository: "{{ .Config.GetVariableValue "APPNAME" }}"
3-
pullPolicy: Always
4-
tag: "latest"
2+
repository: "{{ .Config.GetVariableValue "IMAGENAME" }}"
3+
tag: "{{ .Config.GetVariableValue "IMAGETAG" }}"
4+
pullPolicy: "{{ .Config.GetVariableValue "IMAGEPULLPOLICY" }}"
55
service:
66
annotations: {}
77
type: LoadBalancer

0 commit comments

Comments
 (0)