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

Commit ef94fae

Browse files
committed
Update Contour Docker image to v1.20.0.
Signed-off-by: Steve Kriss <[email protected]>
1 parent 6331a78 commit ef94fae

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.20.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.20.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.20.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.20.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.20.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
@@ -9294,8 +9294,8 @@ spec:
92949294
- --enable-leader-election
92959295
command:
92969296
- /contour-operator
9297-
image: ghcr.io/projectcontour/contour-operator:main
9298-
imagePullPolicy: Always
9297+
image: ghcr.io/projectcontour/contour-operator:v1.20.0
9298+
imagePullPolicy: IfNotPresent
92999299
name: contour-operator
93009300
resources:
93019301
requests:

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:main"
17+
DefaultContourImage = "ghcr.io/projectcontour/contour:v1.20.0"
1818
DefaultEnvoyImage = "docker.io/envoyproxy/envoy:v1.21.0"
1919
DefaultMetricsAddr = ":8080"
2020
DefaultEnableLeaderElection = false

0 commit comments

Comments
 (0)