From ce6b7009f8db7ba76d6dc01022f682b32f7083df Mon Sep 17 00:00:00 2001 From: Brandon Philips <brandon.philips@coreos.com> Date: Mon, 27 Mar 2017 14:06:28 +0200 Subject: [PATCH] kube-prometheus: fix rolebinding This entire thing is built in the monitoring namespace but the rolebinding was on default. This caused the operator to never launch. --- .../prometheus-operator-cluster-role-binding.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/prometheus-operator/prometheus-operator-cluster-role-binding.yaml b/manifests/prometheus-operator/prometheus-operator-cluster-role-binding.yaml index bd69276f..5ea7b9c5 100644 --- a/manifests/prometheus-operator/prometheus-operator-cluster-role-binding.yaml +++ b/manifests/prometheus-operator/prometheus-operator-cluster-role-binding.yaml @@ -9,4 +9,4 @@ roleRef: subjects: - kind: ServiceAccount name: prometheus-operator - namespace: default + namespace: monitoring -- GitLab