Files
devops-infra-helm-charts-gcp/helm-templates/tempo-distributed/templates/querier/poddisruptionbudget-querier.yaml
T
2026-08-26 03:39:42 +05:30

15 lines
440 B
YAML

{{- if gt (int .Values.querier.replicas) 1 }}
{{ $dict := dict "ctx" . "component" "querier" "memberlist" true }}
apiVersion: {{ include "tempo.pdb.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "tempo.resourceName" $dict }}
labels:
{{- include "tempo.labels" $dict | nindent 4 }}
spec:
selector:
matchLabels:
{{- include "tempo.selectorLabels" $dict | nindent 6 }}
maxUnavailable: 1
{{- end }}