Add lakekeeper chart 0.8.1

This commit is contained in:
wbsong111
2025-11-26 15:11:27 +09:00
parent a8332c8c05
commit 2b649a78c6
194 changed files with 20799 additions and 0 deletions
@@ -0,0 +1,20 @@
{{- if .Values.catalog.podDisruptionBudget.enabled }}
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ include "iceberg-catalog.fullname" . }}
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 }}