Skip to content

Commit 830849a

Browse files
committed
Update Contour Docker image to v1.25.1.
Signed-off-by: Sunjay Bhatia <[email protected]>
1 parent ea09819 commit 830849a

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

cmd/contour/gatewayprovisioner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func registerGatewayProvisioner(app *kingpin.Application) (*kingpin.CmdClause, *
3333
cmd := app.Command("gateway-provisioner", "Run contour gateway provisioner.")
3434

3535
provisionerConfig := &gatewayProvisionerConfig{
36-
contourImage: "ghcr.io/projectcontour/contour:v1.25.0",
36+
contourImage: "ghcr.io/projectcontour/contour:v1.25.1",
3737
envoyImage: "docker.io/envoyproxy/envoy:v1.26.4",
3838
metricsBindAddress: ":8080",
3939
leaderElection: false,

examples/contour/02-job-certgen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ rules:
3636
apiVersion: batch/v1
3737
kind: Job
3838
metadata:
39-
name: contour-certgen-v1.25.0
39+
name: contour-certgen-v1.25.1
4040
namespace: projectcontour
4141
spec:
4242
template:
@@ -46,7 +46,7 @@ spec:
4646
spec:
4747
containers:
4848
- name: contour
49-
image: ghcr.io/projectcontour/contour:v1.25.0
49+
image: ghcr.io/projectcontour/contour:v1.25.1
5050
imagePullPolicy: IfNotPresent
5151
command:
5252
- contour

examples/contour/03-contour.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
- --contour-key-file=/certs/tls.key
4646
- --config-path=/config/contour.yaml
4747
command: ["contour"]
48-
image: ghcr.io/projectcontour/contour:v1.25.0
48+
image: ghcr.io/projectcontour/contour:v1.25.1
4949
imagePullPolicy: IfNotPresent
5050
name: contour
5151
ports:

examples/contour/03-envoy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
args:
3030
- envoy
3131
- shutdown-manager
32-
image: ghcr.io/projectcontour/contour:v1.25.0
32+
image: ghcr.io/projectcontour/contour:v1.25.1
3333
imagePullPolicy: IfNotPresent
3434
lifecycle:
3535
preStop:
@@ -107,7 +107,7 @@ spec:
107107
- --envoy-key-file=/certs/tls.key
108108
command:
109109
- contour
110-
image: ghcr.io/projectcontour/contour:v1.25.0
110+
image: ghcr.io/projectcontour/contour:v1.25.1
111111
imagePullPolicy: IfNotPresent
112112
name: envoy-initconfig
113113
volumeMounts:

examples/deployment/03-envoy-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
args:
4343
- envoy
4444
- shutdown-manager
45-
image: ghcr.io/projectcontour/contour:v1.25.0
45+
image: ghcr.io/projectcontour/contour:v1.25.1
4646
imagePullPolicy: IfNotPresent
4747
lifecycle:
4848
preStop:
@@ -120,7 +120,7 @@ spec:
120120
- --envoy-key-file=/certs/tls.key
121121
command:
122122
- contour
123-
image: ghcr.io/projectcontour/contour:v1.25.0
123+
image: ghcr.io/projectcontour/contour:v1.25.1
124124
imagePullPolicy: IfNotPresent
125125
name: envoy-initconfig
126126
volumeMounts:

examples/gateway-provisioner/03-gateway-provisioner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
- --metrics-addr=127.0.0.1:8080
2323
- --enable-leader-election
2424
command: ["contour"]
25-
image: ghcr.io/projectcontour/contour:v1.25.0
25+
image: ghcr.io/projectcontour/contour:v1.25.1
2626
imagePullPolicy: IfNotPresent
2727
name: contour-gateway-provisioner
2828
resources:

examples/render/contour-deployment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7584,7 +7584,7 @@ rules:
75847584
apiVersion: batch/v1
75857585
kind: Job
75867586
metadata:
7587-
name: contour-certgen-v1.25.0
7587+
name: contour-certgen-v1.25.1
75887588
namespace: projectcontour
75897589
spec:
75907590
template:
@@ -7594,7 +7594,7 @@ spec:
75947594
spec:
75957595
containers:
75967596
- name: contour
7597-
image: ghcr.io/projectcontour/contour:v1.25.0
7597+
image: ghcr.io/projectcontour/contour:v1.25.1
75987598
imagePullPolicy: IfNotPresent
75997599
command:
76007600
- contour
@@ -7843,7 +7843,7 @@ spec:
78437843
- --contour-key-file=/certs/tls.key
78447844
- --config-path=/config/contour.yaml
78457845
command: ["contour"]
7846-
image: ghcr.io/projectcontour/contour:v1.25.0
7846+
image: ghcr.io/projectcontour/contour:v1.25.1
78477847
imagePullPolicy: IfNotPresent
78487848
name: contour
78497849
ports:
@@ -7945,7 +7945,7 @@ spec:
79457945
args:
79467946
- envoy
79477947
- shutdown-manager
7948-
image: ghcr.io/projectcontour/contour:v1.25.0
7948+
image: ghcr.io/projectcontour/contour:v1.25.1
79497949
imagePullPolicy: IfNotPresent
79507950
lifecycle:
79517951
preStop:
@@ -8023,7 +8023,7 @@ spec:
80238023
- --envoy-key-file=/certs/tls.key
80248024
command:
80258025
- contour
8026-
image: ghcr.io/projectcontour/contour:v1.25.0
8026+
image: ghcr.io/projectcontour/contour:v1.25.1
80278027
imagePullPolicy: IfNotPresent
80288028
name: envoy-initconfig
80298029
volumeMounts:

examples/render/contour-gateway-provisioner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16843,7 +16843,7 @@ spec:
1684316843
- --metrics-addr=127.0.0.1:8080
1684416844
- --enable-leader-election
1684516845
command: ["contour"]
16846-
image: ghcr.io/projectcontour/contour:v1.25.0
16846+
image: ghcr.io/projectcontour/contour:v1.25.1
1684716847
imagePullPolicy: IfNotPresent
1684816848
name: contour-gateway-provisioner
1684916849
resources:

examples/render/contour-gateway.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7590,7 +7590,7 @@ rules:
75907590
apiVersion: batch/v1
75917591
kind: Job
75927592
metadata:
7593-
name: contour-certgen-v1.25.0
7593+
name: contour-certgen-v1.25.1
75947594
namespace: projectcontour
75957595
spec:
75967596
template:
@@ -7600,7 +7600,7 @@ spec:
76007600
spec:
76017601
containers:
76027602
- name: contour
7603-
image: ghcr.io/projectcontour/contour:v1.25.0
7603+
image: ghcr.io/projectcontour/contour:v1.25.1
76047604
imagePullPolicy: IfNotPresent
76057605
command:
76067606
- contour
@@ -7849,7 +7849,7 @@ spec:
78497849
- --contour-key-file=/certs/tls.key
78507850
- --config-path=/config/contour.yaml
78517851
command: ["contour"]
7852-
image: ghcr.io/projectcontour/contour:v1.25.0
7852+
image: ghcr.io/projectcontour/contour:v1.25.1
78537853
imagePullPolicy: IfNotPresent
78547854
name: contour
78557855
ports:
@@ -7938,7 +7938,7 @@ spec:
79387938
args:
79397939
- envoy
79407940
- shutdown-manager
7941-
image: ghcr.io/projectcontour/contour:v1.25.0
7941+
image: ghcr.io/projectcontour/contour:v1.25.1
79427942
imagePullPolicy: IfNotPresent
79437943
lifecycle:
79447944
preStop:
@@ -8016,7 +8016,7 @@ spec:
80168016
- --envoy-key-file=/certs/tls.key
80178017
command:
80188018
- contour
8019-
image: ghcr.io/projectcontour/contour:v1.25.0
8019+
image: ghcr.io/projectcontour/contour:v1.25.1
80208020
imagePullPolicy: IfNotPresent
80218021
name: envoy-initconfig
80228022
volumeMounts:

examples/render/contour.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7584,7 +7584,7 @@ rules:
75847584
apiVersion: batch/v1
75857585
kind: Job
75867586
metadata:
7587-
name: contour-certgen-v1.25.0
7587+
name: contour-certgen-v1.25.1
75887588
namespace: projectcontour
75897589
spec:
75907590
template:
@@ -7594,7 +7594,7 @@ spec:
75947594
spec:
75957595
containers:
75967596
- name: contour
7597-
image: ghcr.io/projectcontour/contour:v1.25.0
7597+
image: ghcr.io/projectcontour/contour:v1.25.1
75987598
imagePullPolicy: IfNotPresent
75997599
command:
76007600
- contour
@@ -7843,7 +7843,7 @@ spec:
78437843
- --contour-key-file=/certs/tls.key
78447844
- --config-path=/config/contour.yaml
78457845
command: ["contour"]
7846-
image: ghcr.io/projectcontour/contour:v1.25.0
7846+
image: ghcr.io/projectcontour/contour:v1.25.1
78477847
imagePullPolicy: IfNotPresent
78487848
name: contour
78497849
ports:
@@ -7932,7 +7932,7 @@ spec:
79327932
args:
79337933
- envoy
79347934
- shutdown-manager
7935-
image: ghcr.io/projectcontour/contour:v1.25.0
7935+
image: ghcr.io/projectcontour/contour:v1.25.1
79367936
imagePullPolicy: IfNotPresent
79377937
lifecycle:
79387938
preStop:
@@ -8010,7 +8010,7 @@ spec:
80108010
- --envoy-key-file=/certs/tls.key
80118011
command:
80128012
- contour
8013-
image: ghcr.io/projectcontour/contour:v1.25.0
8013+
image: ghcr.io/projectcontour/contour:v1.25.1
80148014
imagePullPolicy: IfNotPresent
80158015
name: envoy-initconfig
80168016
volumeMounts:

0 commit comments

Comments
 (0)