I can use Helm for uninstalling (the charts is removed from helm list) but It seems nothing happen with the pods It remains in k8s.
Installation was based on this: Install with Helm - Percona Operator for MySQL based on Percona XtraDB Cluster
Before:
root@kubernetes-master-ubuntu:~# helm list -A
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
ingress-nginx default 2 2022-08-18 02:10:46.471275227 +0000 UTC deployed ingress-nginx-4.2.1 1.3.0
my-db my-namespace 1 2022-09-29 20:54:38.257264002 +0000 UTC deployed pxc-db-1.11.0 1.11.0
my-db default 1 2022-09-29 22:03:08.556752683 +0000 UTC deployed pxc-db-1.11.5 1.11.0
my-op default 1 2022-09-29 20:47:32.901839549 +0000 UTC deployed pxc-operator-1.11.0 1.11.0
After:
root@kubernetes-master-ubuntu:~# helm list -A
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
ingress-nginx default 2 2022-08-18 02:10:46.471275227 +0000 UTC deployed ingress-nginx-4.2.1 1.3.0
root@kubernetes-master-ubuntu:~# k get all -ALL | grep pxc
default pod/my-db-pxc-db-haproxy-0 1/2 Running 125 (2m20s ago) 2d20h
default pod/my-db-pxc-db-haproxy-1 1/2 Running 121 (113s ago) 2d20h
default pod/my-db-pxc-db-haproxy-2 0/2 Pending 0 2d20h
default pod/my-db-pxc-db-pxc-0 3/3 Running 1 (36h ago) 2d20h
default pod/my-db-pxc-db-pxc-1 3/3 Running 1 (36h ago) 2d20h
default pod/my-db-pxc-db-pxc-2 0/3 Pending 0 2d20h
default service/my-db-pxc-db-haproxy ClusterIP 10.109.124.94 <none> 3306/TCP,3309/TCP,33062/TCP,33060/TCP 2d20h
default service/my-db-pxc-db-haproxy-replicas ClusterIP 10.101.223.216 <none> 3306/TCP 2d20h
default service/my-db-pxc-db-pxc ClusterIP None <none> 3306/TCP,33062/TCP,33060/TCP 2d20h
default service/my-db-pxc-db-pxc-unready ClusterIP None <none> 3306/TCP,33062/TCP,33060/TCP 2d20h
default statefulset.apps/my-db-pxc-db-haproxy 0/3 2d20h
default statefulset.apps/my-db-pxc-db-pxc 2/3 2d20h
root@kubernetes-master-ubuntu:~# k version
Client Version: version.Info{Major:"1", Minor:"23", GitVersion:"v1.23.5", GitCommit:"c285e781331a3785a7f436042c65c5641ce8a9e9", GitTreeState:"clean", BuildDate:"2022-03-16T15:58:47Z", GoVersion:"go1.17.8", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"23", GitVersion:"v1.23.5", GitCommit:"c285e781331a3785a7f436042c65c5641ce8a9e9", GitTreeState:"clean", BuildDate:"2022-03-16T15:52:18Z", GoVersion:"go1.17.8", Compiler:"gc", Platform:"linux/amd64"}
root@kubernetes-master-ubuntu:~# helm version
version.BuildInfo{Version:"v3.9.4", GitCommit:"dbc6d8e20fe1d58d50e6ed30f09a04a77e4c68db", GitTreeState:"clean", GoVersion:"go1.17.13"}
root@kubernetes-master-ubuntu:~#