Skip to content

Commit d3654bd

Browse files
authored
Tests & Docs: Bump images. (#13579)
1 parent 147d650 commit d3654bd

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

docs/examples/canary/README.md

Lines changed: 2 additions & 2 deletions
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.1.4@sha256:0e7cf544a27bfdc9ed7f33cad2b6bc25cb6ae49f8bbdaa329dab3f31c65c44f6
34+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.2.0@sha256:b2dd9bc9ab0e13795334b2921931ed3c77cc638ca45a95249f1291bf449a0d2a
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.1.4@sha256:0e7cf544a27bfdc9ed7f33cad2b6bc25cb6ae49f8bbdaa329dab3f31c65c44f6
100+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.2.0@sha256:b2dd9bc9ab0e13795334b2921931ed3c77cc638ca45a95249f1291bf449a0d2a
101101
ports:
102102
- containerPort: 80
103103
env:

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

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:9151d8114e45a2d386c30e04cb17dd2c62c862f14d49b513ec083ec25cfced20
9+
tag: v1.2.0@sha256:8e87a5e1f7e724bad689e0097b311f9ee23cbb2b28f8a41d4be75c0558819650
1010
extraVolumes:
1111
- name: custom-error-pages
1212
configMap:

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

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:9151d8114e45a2d386c30e04cb17dd2c62c862f14d49b513ec083ec25cfced20
39+
image: registry.k8s.io/ingress-nginx/custom-error-pages:v1.2.0@sha256:8e87a5e1f7e724bad689e0097b311f9ee23cbb2b28f8a41d4be75c0558819650
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

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:0e7cf544a27bfdc9ed7f33cad2b6bc25cb6ae49f8bbdaa329dab3f31c65c44f6
21+
image: registry.k8s.io/ingress-nginx/e2e-test-echo:v1.2.0@sha256:b2dd9bc9ab0e13795334b2921931ed3c77cc638ca45a95249f1291bf449a0d2a
2222
ports:
2323
- containerPort: 8080
2424
resources:

test/e2e/HTTPBUN_IMAGE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry.k8s.io/ingress-nginx/httpbun:v1.1.4@sha256:6f6e3de1dd889dd7e72751e01437bbfefd1e90079f36101c42fbac8ef094e0ae
1+
registry.k8s.io/ingress-nginx/httpbun:v1.2.0@sha256:b41435f66a362dd325f1a4a856257e534d014354a6b935e12fe7f591b52ddcaf

test/e2e/framework/deployment.go

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:0e7cf544a27bfdc9ed7f33cad2b6bc25cb6ae49f8bbdaa329dab3f31c65c44f6" //#nosec G101
50+
const EchoImage = "registry.k8s.io/ingress-nginx/e2e-test-echo:v1.2.0@sha256:b2dd9bc9ab0e13795334b2921931ed3c77cc638ca45a95249f1291bf449a0d2a" //#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

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:2547e6e6b1818e887fb2c9fdde8668aecfe720f39543435b5924bb823515b447",
62+
Image: "registry.k8s.io/ingress-nginx/fastcgi-helloserver:v1.2.0@sha256:237c3f816ed38fd6b51303e7118cac759b8f8fbd97e477ebedf966c1c6100b6a",
6363
Env: []corev1.EnvVar{},
6464
Ports: []corev1.ContainerPort{
6565
{

test/e2e/settings/ocsp/ocsp.go

Lines changed: 1 addition & 1 deletion
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.1.4@sha256:56ae16e665fd8e24d3d23773f13d3724583a566e833713959cfe51d9323576e9",
300+
Image: "registry.k8s.io/ingress-nginx/cfssl:v1.2.0@sha256:cd3715cf6f32817b5beff83e45814586f6046aca751139bc0b1e4addde849bbb",
301301
Command: []string{
302302
"/bin/bash",
303303
"-c",

0 commit comments

Comments
 (0)