deagleshot
deagleshot

Reputation: 215

How to disable google managed prom?

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

Upvotes: 2

Views: 1731

Answers (1)

Gari Singh
Gari Singh

Reputation: 12013

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

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

Upvotes: 5

Related Questions