From d0f50df8b277c6ec74914737e42671cd38e6f885 Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Thu, 2 May 2024 12:38:54 -0600 Subject: [PATCH] hack/release: update release notes template (#6400) Update installing/upgrading section to include Gateway provisioner option. Signed-off-by: Steve Kriss --- hack/release/release-notes-template.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hack/release/release-notes-template.md b/hack/release/release-notes-template.md index 61ee8d38a8a..8d115c0c28b 100644 --- a/hack/release/release-notes-template.md +++ b/hack/release/release-notes-template.md @@ -49,14 +49,19 @@ Feedback and bug reports are welcome! {{ if .Prerelease}} The simplest way to install {{ .Version }} is to apply one of the example configurations: -With Gateway API: +Standalone Contour: ```bash -kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour/{{ .Version }}/examples/render/contour-gateway.yaml +kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour/{{ .Version }}/examples/render/contour.yaml ``` -Without Gateway API: +Contour Gateway Provisioner: ```bash -kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour/{{ .Version }}/examples/render/contour.yaml +kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour/{{ .Version }}/examples/render/contour-gateway-provisioner.yaml +``` + +Statically provisioned Contour with Gateway API: +```bash +kubectl apply -f https://raw.githubusercontent.com/projectcontour/contour/{{ .Version }}/examples/render/contour-gateway.yaml ``` {{ else }} For a fresh install of Contour, consult the [getting started documentation](https://projectcontour.io/getting-started/).