mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
25 lines
683 B
Plaintext
25 lines
683 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * serverless/admin_guide/removing-openshift-serverless.adoc
|
|
|
|
[id="serverless-uninstalling-knative-serving_{context}"]
|
|
= Uninstalling Knative Serving
|
|
|
|
To uninstall Knative Serving, you must remove its custom resource and delete the `knative-serving` namespace.
|
|
|
|
.Procedure
|
|
|
|
. Delete the `knative-serving` custom resource:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc delete knativeservings.operator.knative.dev knative-serving -n knative-serving
|
|
----
|
|
|
|
. After the command has completed and all pods have been removed from the `knative-serving` namespace, delete the namespace:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc delete namespace knative-serving
|
|
----
|