41af7537a0
- Pull upstream qdrant-helm chart v1.18.2 (appVersion v1.18.2) - Add PaaSup custom overrides: custom-values.yaml, dip-values.yaml (ingress.ingressClassName=apisix), dip resource/volume quotas - No breaking changes to existing overrides vs 1.12.4; helm lint passes, image renders as docker.io/qdrant/qdrant:v1.18.2 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
27 lines
779 B
YAML
27 lines
779 B
YAML
{{- if .Values.podDisruptionBudget.enabled }}
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "qdrant.fullname" . }}
|
|
labels:
|
|
{{- include "qdrant.labels" . | nindent 4 }}
|
|
{{- include "qdrant.additionalLabels" . | nindent 4 }}
|
|
{{- with .Values.additionalAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.podDisruptionBudget.maxUnavailable}}
|
|
maxUnavailable: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.podDisruptionBudget.minAvailable }}
|
|
minAvailable: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.podDisruptionBudget.unhealthyPodEvictionPolicy }}
|
|
unhealthyPodEvictionPolicy: {{ . }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "qdrant.selectorLabels" . | nindent 6 }}
|
|
{{- end }}
|