devstar-devcontainer-operator/step2-undeploy-operator.sh
2024-09-30 10:11:40 +00:00

10 lines
420 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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