[zh] Sync #13907 into Chinese (#13914)

* Sync #13907 into Chinese

* fix
This commit is contained in:
Wilson Wu 2023-09-21 11:14:02 +08:00 committed by GitHub
parent ebf9c3a207
commit eae4f8948f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -329,3 +329,17 @@ $ kubectl delete namespace istio-system
{{< text bash >}}
$ kubectl label namespace default istio-injection-
{{< /text >}}
如果您安装了 Kubernetes Gateway API CRD 并且现在想要删除它们,请运行以下命令之一:
- 如果您运行的任何任务需要 **实验版本** 的 CRD
{{< text bash >}}
$ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref={{< k8s_gateway_api_version >}}" | kubectl delete -f -
{{< /text >}}
- 否则:
{{< text bash >}}
$ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref={{< k8s_gateway_api_version >}}" | kubectl delete -f -
{{< /text >}}