Tim Liu
09/29/2022, 10:45 PMAshley Zhao
09/29/2022, 10:47 PMAshley Zhao
09/30/2022, 5:30 PMhelm uninstall yatai -n yatai-system
helm uninstall yatai -n yatai-components
helm uninstall yatai-csi-driver-image-populator -n yatai-components
helm list -n yatai-operators | tail -n +2 | awk '{print $1}' | xargs -I{} helm -n yatai-operators uninstall {}
or additionally deleting the namespace, like the Bash script does?
Thank you! I hope I’m not taking up too much of your time with these questions.Xipeng Guan
09/30/2022, 6:03 PMSlackbot
10/04/2022, 2:52 AMSlackbot
10/10/2022, 1:24 AMAshley Zhao
10/13/2022, 9:36 PMcat <<EOF > test-resources.yaml
apiVersion: v1
kind: Namespace
metadata:
name: cert-manager-test
---
apiVersion: <http://cert-manager.io/v1|cert-manager.io/v1>
kind: Issuer
metadata:
name: test-selfsigned
namespace: cert-manager-test
spec:
selfSigned: {}
---
apiVersion: <http://cert-manager.io/v1|cert-manager.io/v1>
kind: Certificate
metadata:
name: selfsigned-cert
namespace: cert-manager-test
spec:
dnsNames:
- <http://example.com|example.com>
secretName: selfsigned-cert-tls
issuerRef:
name: test-selfsigned
EOF