Skip to content

Commit

Permalink
[grafana/tempo] support new deployment mode: scaling-monolithic
Browse files Browse the repository at this point in the history
add query config for scaling monolithic like query frontend

add toggle for deployment mode

bump chart version

Signed-off-by: Zhang, Xin <[email protected]>
Signed-off-by: Zhang Xin <[email protected]>
  • Loading branch information
rim99 committed Dec 13, 2024
1 parent 53a4725 commit ce0e7fe
Show file tree
Hide file tree
Showing 45 changed files with 1,532 additions and 4 deletions.
1 change: 1 addition & 0 deletions .vib/grafana-tempo/runtime-parameters.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
tempo:
deploymentMode: "microservices"
dataDir: /bitnami/grafana-tempo/data
traces:
otlp:
Expand Down
2 changes: 1 addition & 1 deletion bitnami/grafana-tempo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ maintainers:
name: grafana-tempo
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo
version: 3.8.0
version: 3.9.0
173 changes: 173 additions & 0 deletions bitnami/grafana-tempo/README.md

Large diffs are not rendered by default.

27 changes: 24 additions & 3 deletions bitnami/grafana-tempo/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,22 @@ In order to replicate the container startup execute this command:

Installed components:

{{- if eq .Values.tempo.deploymentMode "microservices" }}
* ingester
* distributor
* querier
* query-frontend
* compactor
{{- else if eq .Values.tempo.deploymentMode "scalingMonolithic" }}
* scaling-monolithic
{{- end }}
{{- if .Values.vulture.enabled }}
* vulture
{{- end }}

1. Get the query-frontend URL by running these commands:

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if contains "NodePort" .Values.queryFrontend.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "grafana-tempo.query-frontend.fullname" . }})
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
Expand All @@ -52,10 +57,26 @@ Installed components:
echo "The Query Frontend is available at http://127.0.0.1:{{ .Values.queryFrontend.service.ports.http }}"
kubectl port-forward svc/{{ template "grafana-tempo.query-frontend.fullname" . }} {{ .Values.queryFrontend.service.ports.http }}:{{ .Values.queryFrontend.service.ports.http }} &
{{- end }}
{{- else if eq .Values.tempo.deploymentMode "scalingMonolithic" }}
{{- if contains "NodePort" .Values.scalingMonolithic.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "grafana-tempo.scaling-monolithic.fullname" . }})
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT
{{- else if contains "LoadBalancer" .Values.scalingMonolithic.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ template "common.names.fullname" . }}
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "common.names.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
echo http://$SERVICE_IP:{{ .Values.scalingMonolithic.service.ports.http }}
{{- else if contains "ClusterIP" .Values.scalingMonolithic.service.type }}
echo "The Query Frontend is available at http://127.0.0.1:{{ .Values.scalingMonolithic.service.ports.http }}"
kubectl port-forward svc/{{ template "grafana-tempo.scaling-monolithic.fullname" . }} {{ .Values.scalingMonolithic.service.ports.http }}:{{ .Values.scalingMonolithic.service.ports.http }} &
{{- end }}
{{- end }}

{{- end }}

{{- include "grafana-tempo.checkRollingTags" . }}
{{- include "grafana-tempo.validateValues" . }}
{{- include "common.warnings.resources" (dict "sections" (list "compactor" "distributor" "ingester" "metricsGenerator" "querier" "queryFrontend.query" "queryFrontend" "volumePermissions" "vulture") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.tempo.image .Values.queryFrontend.query.image .Values.vulture.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.tempo.image .Values.queryFrontend.query.image .Values.vulture.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.warnings.resources" (dict "sections" (list "compactor" "distributor" "ingester" "metricsGenerator" "querier" "queryFrontend.query" "queryFrontend" "scalingMonolithic.query" "scalingMonolithic" "volumePermissions" "vulture") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.tempo.image .Values.queryFrontend.query.image .Values.scalingMonolithic.query.image .Values.vulture.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.tempo.image .Values.queryFrontend.query.image .Values.scalingMonolithic.query.image .Values.vulture.image .Values.volumePermissions.image) "context" $) }}
7 changes: 7 additions & 0 deletions bitnami/grafana-tempo/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ Return the proper Grafana Tempo query-frontend fullname
{{- printf "%s-%s" (include "common.names.fullname" .) "query-frontend" -}}
{{- end -}}

{{/*
Return the proper Grafana Tempo scaling-monolithic fullname
*/}}
{{- define "grafana-tempo.scaling-monolithic.fullname" -}}
{{- printf "%s-%s" (include "common.names.fullname" .) "scaling-monolithic" -}}
{{- end -}}

{{/*
Return the proper Grafana Tempo vulture fullname
*/}}
Expand Down
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/compactor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.compactor.enabled }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
Expand Down Expand Up @@ -177,3 +178,4 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.compactor.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/compactor/networkpolicy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.compactor.enabled .Values.compactor.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
Expand Down Expand Up @@ -122,3 +123,4 @@ spec:
{{- include "common.tplvalues.render" ( dict "value" .Values.compactor.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/compactor/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.compactor.enabled .Values.compactor.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
Expand All @@ -26,3 +27,4 @@ spec:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: compactor
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/compactor/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.compactor.enabled }}
apiVersion: v1
kind: Service
Expand Down Expand Up @@ -61,3 +62,4 @@ spec:
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: compactor
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/compactor/servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.compactor.enabled .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
Expand Down Expand Up @@ -46,3 +47,4 @@ spec:
matchNames:
- {{ .Release.Namespace }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/distributor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
Expand Down Expand Up @@ -214,3 +215,4 @@ spec:
{{- if .Values.distributor.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.distributor.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.distributor.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
Expand Down Expand Up @@ -149,3 +150,4 @@ spec:
{{- include "common.tplvalues.render" ( dict "value" .Values.distributor.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/distributor/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.distributor.pdb.create .Values.distributor.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
Expand All @@ -26,3 +27,4 @@ spec:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: distributor
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/distributor/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: v1
kind: Service
metadata:
Expand Down Expand Up @@ -116,3 +117,4 @@ spec:
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.distributor.podLabels .Values.commonLabels ) "context" . ) }}
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: distributor
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
Expand Down Expand Up @@ -46,3 +47,4 @@ spec:
matchNames:
- {{ .Release.Namespace }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/ingester/networkpolicy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.ingester.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
Expand Down Expand Up @@ -122,3 +123,4 @@ spec:
{{- include "common.tplvalues.render" ( dict "value" .Values.ingester.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/ingester/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.ingester.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
Expand All @@ -26,3 +27,4 @@ spec:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: ingester
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/ingester/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: v1
kind: Service
metadata:
Expand Down Expand Up @@ -59,3 +60,4 @@ spec:
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.ingester.podLabels .Values.commonLabels ) "context" . ) }}
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: ingester
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/ingester/servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
Expand Down Expand Up @@ -46,3 +47,4 @@ spec:
matchNames:
- {{ .Release.Namespace }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/ingester/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: {{ include "common.capabilities.statefulset.apiVersion" . }}
kind: StatefulSet
metadata:
Expand Down Expand Up @@ -231,3 +232,4 @@ spec:
{{- end }}
{{- include "common.storage.class" (dict "persistence" .Values.ingester.persistence "global" .Values.global) | nindent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
Expand Down Expand Up @@ -175,3 +176,4 @@ spec:
{{- if .Values.metricsGenerator.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.metricsGenerator.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.metricsGenerator.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
Expand Down Expand Up @@ -122,3 +123,4 @@ spec:
{{- include "common.tplvalues.render" ( dict "value" .Values.metricsGenerator.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/metrics-generator/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.metricsGenerator.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
Expand All @@ -26,3 +27,4 @@ spec:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: metrics-generator
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: v1
kind: Service
metadata:
Expand Down Expand Up @@ -51,3 +52,4 @@ spec:
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.metricsGenerator.podLabels .Values.commonLabels ) "context" . ) }}
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: metrics-generator
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
Expand Down Expand Up @@ -46,3 +47,4 @@ spec:
matchNames:
- {{ .Release.Namespace }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/querier/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
Expand Down Expand Up @@ -175,3 +176,4 @@ spec:
{{- if .Values.querier.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.querier.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/querier/networkpolicy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.querier.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
Expand Down Expand Up @@ -122,3 +123,4 @@ spec:
{{- include "common.tplvalues.render" ( dict "value" .Values.querier.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/querier/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
{{- if .Values.querier.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
Expand All @@ -26,3 +27,4 @@ spec:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: querier
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions bitnami/grafana-tempo/templates/querier/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if eq .Values.tempo.deploymentMode "microservices" }}
apiVersion: v1
kind: Service
metadata:
Expand Down Expand Up @@ -59,3 +60,4 @@ spec:
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.querier.podLabels .Values.commonLabels ) "context" . ) }}
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: querier
{{- end }}
Loading

0 comments on commit ce0e7fe

Please sign in to comment.