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

Commit 9d7fa35

Browse files
committed
Update Contour Docker image to v1.22.0.
Signed-off-by: Steve Kriss <krisss@vmware.com>
1 parent c861985 commit 9d7fa35

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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/main/examples/operator/operator.yaml
17+
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.22.0/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/main/examples/contour/contour.yaml
29+
$ kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour-operator/v1.22.0/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/main/deploy-options/#test-with-ingress):
41+
[Test with Ingress](https://projectcontour.io/docs/v1.22.0/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/main/CODE_OF_CONDUCT.md) before contributing.
70+
[Code of Conduct](https://github.com/projectcontour/contour/blob/v1.22.0/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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ spec:
2020
- /contour-operator
2121
args:
2222
- --enable-leader-election
23-
image: ghcr.io/projectcontour/contour-operator:main
24-
imagePullPolicy: Always
23+
image: ghcr.io/projectcontour/contour-operator:v1.22.0
24+
imagePullPolicy: IfNotPresent
2525
name: contour-operator
2626
resources:
2727
requests:

examples/operator/operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12270,8 +12270,8 @@ spec:
1227012270
- --enable-leader-election
1227112271
command:
1227212272
- /contour-operator
12273-
image: ghcr.io/projectcontour/contour-operator:main
12274-
imagePullPolicy: Always
12273+
image: ghcr.io/projectcontour/contour-operator:v1.22.0
12274+
imagePullPolicy: IfNotPresent
1227512275
name: contour-operator
1227612276
resources:
1227712277
requests:

internal/operator/config.go

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

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

0 commit comments

Comments
 (0)