From 76f1ba051a33bb9666f00d9e0a1c67ecd9ba1f24 Mon Sep 17 00:00:00 2001 From: Vladislav Polyakov <polrkov.tm@gmail.com> Date: Tue, 19 Apr 2022 10:48:24 +0300 Subject: [PATCH] style: fmt code --- examples/prometheus-thanos.jsonnet | 8 +++--- .../components/prometheus.libsonnet | 28 +++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/examples/prometheus-thanos.jsonnet b/examples/prometheus-thanos.jsonnet index 6dca5439..7d8f64ae 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 35fa5808..3b85906d 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 []), }, }, -- GitLab