rancher-charts/charts/rancher-monitoring/103.1.0+up45.31.1/templates/thanos-ruler/podDisruptionBudget.yaml

22 lines
937 B
YAML
Raw Normal View History

{{- if and .Values.thanosRuler.enabled .Values.thanosRuler.podDisruptionBudget.enabled }}
apiVersion: {{ include "kube-prometheus-stack.pdb.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ template "kube-prometheus-stack.thanosRuler.name" . }}
namespace: {{ template "kube-prometheus-stack.namespace" . }}
labels:
app: {{ template "kube-prometheus-stack.thanosRuler.name" . }}
{{ include "kube-prometheus-stack.labels" . | indent 4 }}
spec:
{{- if .Values.thanosRuler.podDisruptionBudget.minAvailable }}
minAvailable: {{ .Values.thanosRuler.podDisruptionBudget.minAvailable }}
{{- end }}
{{- if .Values.thanosRuler.podDisruptionBudget.maxUnavailable }}
maxUnavailable: {{ .Values.thanosRuler.podDisruptionBudget.maxUnavailable }}
{{- end }}
selector:
matchLabels:
app.kubernetes.io/name: thanos-ruler
thanos-ruler: {{ template "kube-prometheus-stack.thanosRuler.name" . }}
{{- end }}