f4d287abef
- chart 0.8.1 → 0.11.0 (appVersion 0.10.4 → 0.12.2) - deps: postgres 1.5.8 → 1.5.13, openfga 0.2.44 → 0.2.62 - ingress: Kong → APISIX (use-regex + path /.*, cluster-issuer) - openfga.playground 비활성화 (preshared 인증 패닉 방지) - breaking=false, custom-values 키 전부 호환 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
22 lines
763 B
YAML
22 lines
763 B
YAML
{{- if .Values.catalog.podDisruptionBudget.enabled }}
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "iceberg-catalog.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "iceberg-catalog.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: catalog
|
|
spec:
|
|
{{- if .Values.catalog.podDisruptionBudget.maxUnavailable }}
|
|
maxUnavailable: {{ .Values.catalog.podDisruptionBudget.maxUnavailable }}
|
|
{{- end }}
|
|
{{- if .Values.catalog.podDisruptionBudget.minAvailable }}
|
|
minAvailable: {{ .Values.catalog.podDisruptionBudget.minAvailable }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "iceberg-catalog.selectorLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: catalog
|
|
{{- end }}
|