oc-k8s/opencloud/charts/loki/templates/single-binary/pdb.yaml

17 lines
507 B
YAML
Raw Normal View History

2024-12-16 14:55:43 +01:00
{{- $isSingleBinary := eq (include "loki.deployment.isSingleBinary" .) "true" -}}
{{- if and .Values.podDisruptionBudget $isSingleBinary -}}
---
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ template "loki.fullname" . }}
namespace: {{ $.Release.Namespace }}
labels:
{{- include "loki.labels" . | nindent 4 }}
spec:
selector:
matchLabels:
{{- include "loki.singleBinarySelectorLabels" . | nindent 6 }}
{{ toYaml .Values.podDisruptionBudget | indent 2 }}
{{- end }}