You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having difficulty in deleting existing arangodeployments :
root@k8s-eu-1-master:~# kubectl get arangodeployments -o wide
NAME AGE
arangocluster 21d
cluster 174m
cluster-using-local-ssh 8h
root@k8s-eu-1-master:~# kubectl delete arangodeployments arangocluster --force
Warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.
arangodeployment.database.arangodb.com "arangocluster" force deleted
root@k8s-eu-1-master:~# kubectl get arangodeployments -o wide
NAME AGE
arangocluster 21d
cluster 176m
cluster-using-local-ssh 8h
And I didn't succeed in applying what is suggested here: #224 (comment) :
root@k8s-eu-1-master:~# kubectl -n default get pod | grep 'agnt\|prmr' | awk '{print $1}' | xargs -ri kubectl -n default patch pod {} -p '{"metadata":{"finalizers":[]}}' --type=merge
No resources found in default namespace.
root@k8s-eu-1-master:~# kubectl get pod | grep 'agnt\|prmr' | awk '{print $1}' | xargs -ri kubectl patch pod {} -p '{"metadata":{"finalizers":[]}}' --type=merge
No resources found in default namespace.
And I also didn't succeed using the arangoDeployment.yaml file :
root@k8s-eu-1-master:~# kubectl delete -f arangoDeployment.yaml
arangodeployment.database.arangodb.com "cluster" deleted
^Croot@k8s-eu-1-master:~#
root@k8s-eu-1-master:~# kubectl get arangodeployments
NAME AGE
arangocluster 21d
cluster 3h51m
cluster-using-local-ssh 9h
The text was updated successfully, but these errors were encountered:
I'm having difficulty in deleting existing arangodeployments :
And I didn't succeed in applying what is suggested here: #224 (comment) :
And I also didn't succeed using the
arangoDeployment.yaml
file :The text was updated successfully, but these errors were encountered: