Skip to content

Commit ce1ad4b

Browse files
authored
Tests & Docs: Bump images. (#12601)
1 parent 227de50 commit ce1ad4b

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

docs/examples/canary/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
spec:
3232
containers:
3333
- name: production
34-
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.0.1@sha256:1cec65aa768720290d05d65ab1c297ca46b39930e56bc9488259f9114fcd30e2
34+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.1.0@sha256:0713ba47b3e4359b38ad53cd785c34b158e168a91636520a4a5e54cd500d8356
3535
ports:
3636
- containerPort: 80
3737
env:
@@ -97,7 +97,7 @@ spec:
9797
spec:
9898
containers:
9999
- name: canary
100-
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.0.1@sha256:1cec65aa768720290d05d65ab1c297ca46b39930e56bc9488259f9114fcd30e2
100+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.1.0@sha256:0713ba47b3e4359b38ad53cd785c34b158e168a91636520a4a5e54cd500d8356
101101
ports:
102102
- containerPort: 80
103103
env:

docs/examples/customization/custom-errors/custom-default-backend.helm.values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defaultBackend:
66
image:
77
registry: registry.k8s.io
88
image: ingress-nginx/custom-error-pages
9-
tag: v1.0.2@sha256:b2259cf6bfda813548a64bded551b1854cb600c4f095738b49b4c5cdf8ab9d21
9+
tag: v1.1.0@sha256:a2342e403fc3c19f81f5625e1b93daa0f8fb3dfaa1df4905f85e32d2d98a5e96
1010
extraVolumes:
1111
- name: custom-error-pages
1212
configMap:

docs/examples/customization/custom-errors/custom-default-backend.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
spec:
3737
containers:
3838
- name: nginx-error-server
39-
image: registry.k8s.io/ingress-nginx/custom-error-pages:v1.0.2@sha256:b2259cf6bfda813548a64bded551b1854cb600c4f095738b49b4c5cdf8ab9d21
39+
image: registry.k8s.io/ingress-nginx/custom-error-pages:v1.1.0@sha256:a2342e403fc3c19f81f5625e1b93daa0f8fb3dfaa1df4905f85e32d2d98a5e96
4040
ports:
4141
- containerPort: 8080
4242
# Setting the environment variable DEBUG we can see the headers sent

docs/examples/customization/external-auth-headers/echo-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds: 60
1919
containers:
2020
- name: echo-service
21-
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.0.1@sha256:1cec65aa768720290d05d65ab1c297ca46b39930e56bc9488259f9114fcd30e2
21+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.1.0@sha256:0713ba47b3e4359b38ad53cd785c34b158e168a91636520a4a5e54cd500d8356
2222
ports:
2323
- containerPort: 8080
2424
resources:

test/e2e/HTTPBUN_IMAGE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry.k8s.io/ingress-nginx/httpbun:v1.0.2@sha256:d4079f3027dba27e2a1d7fcfb3144d6dd9e15307fb7fa80ca649232d08e90d16
1+
registry.k8s.io/ingress-nginx/httpbun:v1.1.0@sha256:bd870e71e30d478fafd00c515fba454f326960fe343a84ace577723a07a2cd6c

test/e2e/framework/deployment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const NIPService = "external-nip"
4747
var HTTPBunImage = os.Getenv("HTTPBUN_IMAGE")
4848

4949
// EchoImage is the default image to be used by the echo service
50-
const EchoImage = "registry.k8s.io/ingress-nginx/e2e-test-echo:v1.0.1@sha256:1cec65aa768720290d05d65ab1c297ca46b39930e56bc9488259f9114fcd30e2" //#nosec G101
50+
const EchoImage = "registry.k8s.io/ingress-nginx/e2e-test-echo:v1.1.0@sha256:0713ba47b3e4359b38ad53cd785c34b158e168a91636520a4a5e54cd500d8356" //#nosec G101
5151

5252
// TODO: change all Deployment functions to use these options
5353
// in order to reduce complexity and have a unified API across the

test/e2e/framework/fastcgi_helloserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (f *Framework) NewNewFastCGIHelloServerDeploymentWithReplicas(replicas int3
5959
Containers: []corev1.Container{
6060
{
6161
Name: "fastcgi-helloserver",
62-
Image: "registry.k8s.io/ingress-nginx/fastcgi-helloserver:v1.0.2@sha256:dc400fc69d7e0b27dcfe86be29946e19c2a853391305e2790f387267c2e6473e",
62+
Image: "registry.k8s.io/ingress-nginx/fastcgi-helloserver:v1.1.0@sha256:939cb351010a618383921b49056ccb6227b5a486ec52773464edbec03bc04812",
6363
Env: []corev1.EnvVar{},
6464
Ports: []corev1.ContainerPort{
6565
{

test/e2e/settings/ocsp/ocsp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ func ocspserveDeployment(namespace string) (*appsv1.Deployment, *corev1.Service)
297297
Containers: []corev1.Container{
298298
{
299299
Name: name,
300-
Image: "registry.k8s.io/ingress-nginx/cfssl:v1.0.1@sha256:12425bab3f5e41ed20b850fd1e3737a48474f9ad48363efb116243a853db754a",
300+
Image: "registry.k8s.io/ingress-nginx/cfssl:v1.1.0@sha256:31a195d7c3dc801575ca46919ff2b3f01afce54a744ab22ee83469f92a6e0965",
301301
Command: []string{
302302
"/bin/bash",
303303
"-c",

0 commit comments

Comments
 (0)