From 68a2fe7062f6c373e9fe5d7efa775972b4c9fef5 Mon Sep 17 00:00:00 2001 From: prushh Date: Sun, 28 Jan 2024 12:59:03 +0100 Subject: [PATCH] fix: use links to artifact on uninstall page --- 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 36489e2285..d2f4594540 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")}} ```