Skip to content

Commit f58c7ed

Browse files
authored
fix: invalid image for guestbook (#390)
Signed-off-by: Alexandre Gaudreault <[email protected]>
1 parent 7d3261e commit f58c7ed

File tree

7 files changed

+25
-21
lines changed

7 files changed

+25
-21
lines changed

blue-green/values.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
replicaCount: 1
66

77
image:
8-
repository: quay.io/argoprojlabs/argocd-e2e-container
9-
tag: 0.1
8+
repository: gcr.io/google-samples/gb-frontend
9+
tag: v5
1010
pullPolicy: IfNotPresent
1111

1212
service:
@@ -15,7 +15,8 @@ service:
1515

1616
ingress:
1717
enabled: false
18-
annotations: {}
18+
annotations:
19+
{}
1920
# kubernetes.io/ingress.class: nginx
2021
# kubernetes.io/tls-acme: "true"
2122
path: /
@@ -26,7 +27,8 @@ ingress:
2627
# hosts:
2728
# - chart-example.local
2829

29-
resources: {}
30+
resources:
31+
{}
3032
# We usually recommend not to specify default resources and to leave this as a conscious
3133
# choice for the user. This also increases chances charts run on environments with little
3234
# resources, such as Minikube. If you do want to specify resources, uncomment the following

guestbook/guestbook-ui-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
app: guestbook-ui
1515
spec:
1616
containers:
17-
- image: quay.io/argoprojlabs/argocd-e2e-container:0.2
18-
name: guestbook-ui
19-
ports:
20-
- containerPort: 80
17+
- image: gcr.io/google-samples/gb-frontend:v5
18+
name: guestbook-ui
19+
ports:
20+
- containerPort: 80

helm-guestbook/values.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
replicaCount: 1
66

77
image:
8-
repository: quay.io/argoprojlabs/argocd-e2e-container
9-
tag: 0.1
8+
repository: gcr.io/google-samples/gb-frontend
9+
tag: v5
1010
pullPolicy: IfNotPresent
1111

1212
containerPort: 80
@@ -17,7 +17,8 @@ service:
1717

1818
ingress:
1919
enabled: false
20-
annotations: {}
20+
annotations:
21+
{}
2122
# kubernetes.io/ingress.class: nginx
2223
# kubernetes.io/tls-acme: "true"
2324
path: /
@@ -28,7 +29,8 @@ ingress:
2829
# hosts:
2930
# - chart-example.local
3031

31-
resources: {}
32+
resources:
33+
{}
3234
# We usually recommend not to specify default resources and to leave this as a conscious
3335
# choice for the user. This also increases chances charts run on environments with little
3436
# resources, such as Minikube. If you do want to specify resources, uncomment the following

jsonnet-guestbook-tla/guestbook-ui.jsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
function (
2-
containerPort=80,
3-
image="quay.io/argoprojlabs/argocd-e2e-container:0.2",
2+
containerPort=80,
3+
image="gcr.io/google-samples/gb-frontend:v5",
44
name="jsonnet-guestbook-ui",
55
replicas=1,
6-
servicePort=80,
6+
servicePort=80,
77
type="LoadBalancer"
88
)
99
[

jsonnet-guestbook/params.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
containerPort: 80,
3-
image: "quay.io/argoprojlabs/argocd-e2e-container:0.2",
3+
image: "gcr.io/google-samples/gb-frontend:v5",
44
name: "jsonnet-guestbook-ui",
55
replicas: 1,
66
servicePort: 80,

kustomize-guestbook/guestbook-ui-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
app: guestbook-ui
1515
spec:
1616
containers:
17-
- image: quay.io/argoprojlabs/argocd-e2e-container:0.1
18-
name: guestbook-ui
19-
ports:
20-
- containerPort: 80
17+
- image: gcr.io/google-samples/gb-frontend:v5
18+
name: guestbook-ui
19+
ports:
20+
- containerPort: 80

plugins/kustomized-helm/overlays/guestbook-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ spec:
77
spec:
88
containers:
99
- name: helm-guestbook
10-
image: "quay.io/argoprojlabs/argocd-e2e-container:0.2"
10+
image: 'gcr.io/google-samples/gb-frontend:v5'

0 commit comments

Comments
 (0)