How to disable google managed prom?

1k Views Asked by At

I enabled managed service for prom in GCP console

It installed bunch of agents with gmp-system namespace on my gke cluster

how do I uninstall it?

i tried kubectl delete all --all -n gmp-system

but it just respawns

1

There are 1 best solutions below

0
On BEST ANSWER

Since it's a managed add-on, you need to disable it via gcloud:

gcloud container clusters update --disable-managed-prometheus ${CLUSTER_NAME}