You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: build/kube-prometheus/common-template.jsonnet
+28-1
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,34 @@ local kp =
234
234
(if vars['blackbox-exporter'] then { ['blackbox-exporter-' + name]: kp.blackboxExporter[name] for name instd.objectFields(kp.blackboxExporter) } else {}) +
235
235
{ ['grafana-' + name]: kp.grafana[name] for name instd.objectFields(kp.grafana) } +
236
236
{ ['kube-state-metrics-' + name]: kp.kubeStateMetrics[name] for name instd.objectFields(kp.kubeStateMetrics) } +
237
-
{ ['kubernetes-' + name]: kp.kubernetesControlPlane[name] for name instd.objectFields(kp.kubernetesControlPlane) }
237
+
{ ['kubernetes-' + name]: kp.kubernetesControlPlane[name] for name instd.objectFields(kp.kubernetesControlPlane) } +
238
+
// Ordering matters! This next absurd object **has** to come after the inclusion
239
+
// of `kubernetesControlPlane` above -- otherwise we'll overwrite the object and
0 commit comments