Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit c7a2fe0

Browse files
committed
Update Contour Docker image to v1.20.1.
Signed-off-by: Sunjay Bhatia <[email protected]>
1 parent 59f5137 commit c7a2fe0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ operator pattern.
1414

1515
Install the Contour Operator & Contour CRDs:
1616
```
17-
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.20.0/examples/operator/operator.yaml
17+
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.20.1/examples/operator/operator.yaml
1818
```
1919

2020
Verify the deployment is available:
@@ -26,7 +26,7 @@ contour-operator 1/1 1 1 1m
2626

2727
Install an instance of the `Contour` custom resource:
2828
```
29-
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.20.0/examples/contour/contour.yaml
29+
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.20.1/examples/contour/contour.yaml
3030
```
3131

3232
Verify the `Contour` custom resource is available:
@@ -38,7 +38,7 @@ contour-sample True ContourAvailable
3838

3939
__Note:__ It may take several minutes for the `Contour` custom resource to become available.
4040

41-
[Test with Ingress](https://projectcontour.io/docs/v1.20.0/deploy-options/#test-with-ingress):
41+
[Test with Ingress](https://projectcontour.io/docs/v1.20.1/deploy-options/#test-with-ingress):
4242
```
4343
$ kubectl apply -f https://projectcontour.io/examples/kuard.yaml
4444
```
@@ -67,7 +67,7 @@ hostname of `kubectl get deploy/kuard`.
6767
Thanks for taking the time to join our community and start contributing!
6868

6969
- Please familiarize yourself with the
70-
[Code of Conduct](https://github.com/projectcontour/contour/blob/v1.20.0/CODE_OF_CONDUCT.md) before contributing.
70+
[Code of Conduct](https://github.com/projectcontour/contour/blob/v1.20.1/CODE_OF_CONDUCT.md) before contributing.
7171
- See the [contributing guide](docs/CONTRIBUTING.md) for information about setting up your environment, the expected
7272
workflow and instructions on the developer certificate of origin that is required.
7373
- Check out the [open issues](https://github.com/projectcontour/contour-operator/issues).

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
- /contour-operator
2121
args:
2222
- --enable-leader-election
23-
image: ghcr.io/projectcontour/contour-operator:v1.20.0
23+
image: ghcr.io/projectcontour/contour-operator:v1.20.1
2424
imagePullPolicy: IfNotPresent
2525
name: contour-operator
2626
resources:

examples/operator/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9294,7 +9294,7 @@ spec:
92949294
- --enable-leader-election
92959295
command:
92969296
- /contour-operator
9297-
image: ghcr.io/projectcontour/contour-operator:v1.20.0
9297+
image: ghcr.io/projectcontour/contour-operator:v1.20.1
92989298
imagePullPolicy: IfNotPresent
92999299
name: contour-operator
93009300
resources:

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
package config
1515

1616
const (
17-
DefaultContourImage = "ghcr.io/projectcontour/contour:v1.20.0"
17+
DefaultContourImage = "ghcr.io/projectcontour/contour:v1.20.1"
1818
DefaultEnvoyImage = "docker.io/envoyproxy/envoy:v1.21.1"
1919
DefaultMetricsAddr = ":8080"
2020
DefaultEnableLeaderElection = false

0 commit comments

Comments
 (0)