From e497e48e079f1d5d431bbaf79e32068e429e14a0 Mon Sep 17 00:00:00 2001 From: Riccardo Setti <giskard@autistici.org> Date: Mon, 12 Mar 2018 19:41:03 +0100 Subject: [PATCH] Add how to enable cAdvisor support on GKE --- docs/GKE-cadvisor-support.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/GKE-cadvisor-support.md diff --git a/docs/GKE-cadvisor-support.md b/docs/GKE-cadvisor-support.md new file mode 100644 index 00000000..aeb09514 --- /dev/null +++ b/docs/GKE-cadvisor-support.md @@ -0,0 +1,24 @@ +# Kubelet / cAdvisor special configuration updates for GKE + +In order to allow Prometheus to access the endpoints provided by the kubelet/cAdvisor on GKE we have to downgrade the scheme to HTTP (from HTTPS). + + +On linux: + +``` +sed -i -e 's/https/http/g' \ +contrib/kube-prometheus/manifests/prometheus/prometheus-k8s-service-monitor-kubelet.yaml +``` + +On MacOs: + +``` +sed -i '' -e 's/https/http/g' \ +contrib/kube-prometheus/manifests/prometheus/prometheus-k8s-service-monitor-kubelet.yaml +``` + +After you have modified the yaml file please run + +``` +kubectl apply -f contrib/kube-prometheus/manifests/prometheus/prometheus-k8s-service-monitor-kubelet.yaml +``` -- GitLab