Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use links to artifact on uninstall page #5836

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/install/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")}}
```


Expand Down Expand Up @@ -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")}}
```


Expand Down
Loading