diff --git a/component/helm_values.jsonnet b/component/helm_values.jsonnet index 96f4bc9b..dd303c17 100644 --- a/component/helm_values.jsonnet +++ b/component/helm_values.jsonnet @@ -127,37 +127,20 @@ local openshift = if isOpenshift then com.makeMergeable({ local images = com.makeMergeable({ loki: { - image: { - repository: '%(registry)s/%(repository)s' % params.images.loki, - [if std.objectHas(params.images.loki, 'tag') then 'tag']: params.images.loki.tag, - }, + image: params.images.loki, }, memcached: { - image: { - repository: '%(registry)s/%(repository)s' % params.images.memcached, - [if std.objectHas(params.images.memcached, 'tag') then 'tag']: params.images.memcached.tag, - }, + image: params.images.memcached, }, memcachedExporter: { - image: { - repository: '%(registry)s/%(repository)s' % params.images.memcachedExporter, - [if std.objectHas(params.images.memcachedExporter, 'tag') then 'tag']: params.images.memcachedExporter.tag, - }, + image: params.images.memcachedExporter, }, gateway: { nginx: { - image: { - registry: params.images.nginx.registry, - repository: params.images.nginx.repository, - [if std.objectHas(params.images.nginx, 'tag') then 'tag']: params.images.nginx.tag, - }, + image: params.images.nginx, }, metrics: { - image: { - registry: params.images.accessLogExporter.registry, - repository: params.images.accessLogExporter.repository, - [if std.objectHas(params.images.accessLogExporter, 'tag') then 'tag']: params.images.accessLogExporter.tag, - }, + image: params.images.accessLogExporter, }, }, }); diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/compactor/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/compactor/workload.yaml index 6cad1d99..aab8c87f 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/compactor/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/compactor/workload.yaml @@ -60,7 +60,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/distributor/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/distributor/workload.yaml index 0a6db1c0..16ec8822 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/distributor/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/distributor/workload.yaml @@ -62,7 +62,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/index-gateway/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/index-gateway/workload.yaml index d61d698b..4fe4e905 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/index-gateway/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/index-gateway/workload.yaml @@ -59,7 +59,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/ingester/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/ingester/workload.yaml index 7ddf9bba..8eecd780 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/ingester/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/ingester/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/overrides-exporter/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/overrides-exporter/workload.yaml index 9f78ea77..6c3b4b94 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/overrides-exporter/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/overrides-exporter/workload.yaml @@ -58,7 +58,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/querier/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/querier/workload.yaml index 7d2d735c..5a5cf340 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/querier/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/querier/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-frontend/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-frontend/workload.yaml index 26f168fd..b5e6b3f7 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-frontend/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-frontend/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-scheduler/workload.yaml b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-scheduler/workload.yaml index f7ed294d..307aa40c 100644 --- a/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-scheduler/workload.yaml +++ b/tests/golden/defaults/defaults/defaults/10_helm_loki/loki/templates/query-scheduler/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: defaults-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/compactor/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/compactor/workload.yaml index aadad0e4..a73472e5 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/compactor/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/compactor/workload.yaml @@ -60,7 +60,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/distributor/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/distributor/workload.yaml index 09467ed0..3c9efd87 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/distributor/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/distributor/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/index-gateway/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/index-gateway/workload.yaml index 0b926516..5969de58 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/index-gateway/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/index-gateway/workload.yaml @@ -59,7 +59,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ingester/statefulset-zone.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ingester/statefulset-zone.yaml index abf62c30..38310725 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ingester/statefulset-zone.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ingester/statefulset-zone.yaml @@ -77,7 +77,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 @@ -246,7 +246,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 @@ -415,7 +415,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/overrides-exporter/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/overrides-exporter/workload.yaml index 12072eda..9cd0cd53 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/overrides-exporter/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/overrides-exporter/workload.yaml @@ -58,7 +58,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/pattern-ingester/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/pattern-ingester/workload.yaml index 8855810e..e00711ba 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/pattern-ingester/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/pattern-ingester/workload.yaml @@ -57,7 +57,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/querier/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/querier/workload.yaml index ab70967a..b9cc570e 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/querier/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/querier/workload.yaml @@ -64,7 +64,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-frontend/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-frontend/workload.yaml index 47c4cdbe..bb2ddd3c 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-frontend/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-frontend/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-scheduler/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-scheduler/workload.yaml index 6f1819bd..b73f6c01 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-scheduler/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/query-scheduler/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ruler/workload.yaml b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ruler/workload.yaml index 34a42915..c1d47494 100644 --- a/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ruler/workload.yaml +++ b/tests/golden/extra-config/extra-config/extra-config/10_helm_loki/loki/templates/ruler/workload.yaml @@ -59,7 +59,7 @@ spec: envFrom: - secretRef: name: extra-config-bucket-secret - image: docker.io/dockerhub.vshn.net/grafana/loki:3.7.3 + image: dockerhub.vshn.net/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/backend/workload.yaml b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/backend/workload.yaml index d2aaefa9..43fabd50 100644 --- a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/backend/workload.yaml +++ b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/backend/workload.yaml @@ -64,7 +64,7 @@ spec: envFrom: - secretRef: name: legacy-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/read/workload.yaml b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/read/workload.yaml index 1a260bef..22e2e18d 100644 --- a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/read/workload.yaml +++ b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/read/workload.yaml @@ -62,7 +62,7 @@ spec: envFrom: - secretRef: name: legacy-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/write/workload.yaml b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/write/workload.yaml index d03364ae..06f3ab86 100644 --- a/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/write/workload.yaml +++ b/tests/golden/legacy/legacy/legacy/10_helm_loki/loki/templates/write/workload.yaml @@ -60,7 +60,7 @@ spec: envFrom: - secretRef: name: legacy-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/compactor/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/compactor/workload.yaml index 3984dcde..ea45e5a5 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/compactor/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/compactor/workload.yaml @@ -60,7 +60,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/distributor/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/distributor/workload.yaml index 749d5718..5777213a 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/distributor/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/distributor/workload.yaml @@ -62,7 +62,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/index-gateway/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/index-gateway/workload.yaml index b5354f33..31e0b580 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/index-gateway/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/index-gateway/workload.yaml @@ -59,7 +59,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/ingester/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/ingester/workload.yaml index 082d39db..0dbd04c8 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/ingester/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/ingester/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/overrides-exporter/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/overrides-exporter/workload.yaml index a5a02e8a..5537e236 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/overrides-exporter/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/overrides-exporter/workload.yaml @@ -58,7 +58,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/querier/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/querier/workload.yaml index a5f674a9..820bfeac 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/querier/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/querier/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-frontend/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-frontend/workload.yaml index c8e5f172..cb80154b 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-frontend/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-frontend/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-scheduler/workload.yaml b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-scheduler/workload.yaml index 1d0424dc..9d73ff84 100644 --- a/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-scheduler/workload.yaml +++ b/tests/golden/openshift/openshift/openshift/10_helm_loki/loki/templates/query-scheduler/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: openshift-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/compactor/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/compactor/workload.yaml index 5f2072b5..a274556e 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/compactor/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/compactor/workload.yaml @@ -60,7 +60,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/distributor/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/distributor/workload.yaml index 597db2fe..8bc750f2 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/distributor/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/distributor/workload.yaml @@ -62,7 +62,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/index-gateway/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/index-gateway/workload.yaml index 697a553c..45e9fafe 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/index-gateway/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/index-gateway/workload.yaml @@ -59,7 +59,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/ingester/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/ingester/workload.yaml index f6db5928..b88138d5 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/ingester/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/ingester/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/overrides-exporter/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/overrides-exporter/workload.yaml index 67cb3fea..f4cfc8b6 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/overrides-exporter/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/overrides-exporter/workload.yaml @@ -58,7 +58,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/querier/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/querier/workload.yaml index b507f672..99b6538f 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/querier/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/querier/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-frontend/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-frontend/workload.yaml index b3af2811..2979f41f 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-frontend/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-frontend/workload.yaml @@ -63,7 +63,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10 diff --git a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-scheduler/workload.yaml b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-scheduler/workload.yaml index f7c80569..c7ff86d0 100644 --- a/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-scheduler/workload.yaml +++ b/tests/golden/prometheus/prometheus/prometheus/10_helm_loki/loki/templates/query-scheduler/workload.yaml @@ -61,7 +61,7 @@ spec: envFrom: - secretRef: name: prometheus-bucket-secret - image: docker.io/docker.io/grafana/loki:3.7.3 + image: docker.io/grafana/loki:3.7.3 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 10