nkigen
nkigen

Reputation: 450

Installing Prometheus on GKE + istio

I'm trying to install Prometheus on istio running on GKE by following This doc . It looks like the link provided there for fetching install-prometheus.yaml file is broken. Any idea where I can get it?

curl https://storage.googleapis.com/gke-release/istio/release/1.0.6-gke.1/patches/install-prometheus.yaml | kubectl apply -n istio-system -f -

Upvotes: 0

Views: 1056

Answers (1)

translucens
translucens

Reputation: 46

Google Cloud offers version 1.0.6-gke.3 manifest, so this workaround is no longer required.


I experienced the same error with GKE 1.12.6-gke.7 / Istio 1.0.6-gke.1 cluster. I tried applying the old version of prometheus manifest file into the cluster; prometheus metrics collecting functions are seems working fine.

$ curl https://storage.googleapis.com/gke-release/istio/release/1.0.3-gke.3/patches/install-prometheus.yaml | kubectl apply -f -

Upvotes: 2

Related Questions