diff --git a/examples/prometheus-thanos.jsonnet b/examples/prometheus-thanos.jsonnet index 6dca5439ae4fdad8effbc99f1acc5ff80cd7166f..7d8f64ae36d358d7102b9f9819caf238159d5484 100644 --- a/examples/prometheus-thanos.jsonnet +++ b/examples/prometheus-thanos.jsonnet @@ -16,10 +16,10 @@ local kp = prometheus+: { thanos: { baseImage: 'quay.io/thanos/thanos', - version: 'v0.8.1', - objectStorageConfig: { - key: 'thanos.yaml', - name: 'thanos-objstore-config', + version: 'v0.8.1', + objectStorageConfig: { + key: 'thanos.yaml', + name: 'thanos-objstore-config', }, }, }, diff --git a/jsonnet/kube-prometheus/components/prometheus.libsonnet b/jsonnet/kube-prometheus/components/prometheus.libsonnet index 35fa5808654e7586d14a4a9620822902a318648b..3b85906d534be71442b8ccbb7eb7c0f6f685ee48 100644 --- a/jsonnet/kube-prometheus/components/prometheus.libsonnet +++ b/jsonnet/kube-prometheus/components/prometheus.libsonnet @@ -128,20 +128,20 @@ function(params) { port: 9090, protocol: 'TCP', }], - }] + ( if p._config.thanos != null then - [{ - from: [{ - podSelector: { - matchLabels: { - 'app.kubernetes.io/name': 'thanos-query', - }, - }, - }], - ports: [{ - port: 10901, - protocol: 'TCP', - }], - }] else []), + }] + (if p._config.thanos != null then + [{ + from: [{ + podSelector: { + matchLabels: { + 'app.kubernetes.io/name': 'thanos-query', + }, + }, + }], + ports: [{ + port: 10901, + protocol: 'TCP', + }], + }] else []), }, },