From ac6efa88c451c328d25d8ef459c95a167d05cca8 Mon Sep 17 00:00:00 2001 From: Davide Pruscini <33416316+prushh@users.noreply.github.com> Date: Mon, 29 Jan 2024 07:40:11 +0100 Subject: [PATCH] fix: use links to artifact on uninstall page (#5836) --- docs/install/uninstall.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install/uninstall.md b/docs/install/uninstall.md index 36489e2285d..d2f45945405 100644 --- a/docs/install/uninstall.md +++ b/docs/install/uninstall.md @@ -102,13 +102,13 @@ Follow the relevant procedure to uninstall the networking layer you installed: 1. Uninstall the Serving core components by running: ``` - kubectl delete -f https://storage.googleapis.com/knative-nightly/serving/latest/serving-core.yaml + kubectl delete -f {{ artifact(repo="serving",file="serving-core.yaml")}} ``` 1. Uninstall the required custom resources by running: ``` - kubectl delete -f https://storage.googleapis.com/knative-nightly/serving/latest/serving-crds.yaml + kubectl delete -f {{ artifact(repo="serving",file="serving-crds.yaml")}} ``` @@ -302,13 +302,13 @@ Uninstall each channel layer you have installed: 1. Uninstall the Eventing core components by running: ``` - kubectl delete -f https://storage.googleapis.com/knative-nightly/eventing/latest/eventing-core.yaml + kubectl delete -f {{ artifact(repo="eventing",file="eventing-core.yaml")}} ``` 1. Uninstall the required custom resources by running: ``` - kubectl delete -f https://storage.googleapis.com/knative-nightly/eventing/latest/eventing-crds.yaml + kubectl delete -f {{ artifact(repo="eventing",file="eventing-crds.yaml")}} ```