mirror of
https://gitee.com/devstar/devstar-devcontainer-operator
synced 2025-04-21 09:42:22 +00:00
10 lines
420 B
Bash
10 lines
420 B
Bash
#!/bin/sh
|
||
|
||
# 首先将 CRLF 统一替换为 LF: sed -i 's/\r$//' *.sh
|
||
|
||
## 1. Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
|
||
make undeploy
|
||
|
||
## 2. Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
|
||
make uninstall
|