Installing Prometheus on GKE + istio

4/2/2019

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 -

-- nkigen
google-kubernetes-engine
istio
prometheus

1 Answer

4/3/2019

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 -
-- translucens
Source: StackOverflow