Files
service-catalog/manifests/helm/lakekeeper/0.11.0/templates/catalog/catalog-hpa.yaml
T
wbsong111 f4d287abef update lakekeeper/0.11.0
- 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>
2026-06-15 09:13:31 +09:00

20 lines
630 B
YAML

{{- if (.Values.catalog.autoscaling.enabled) }}
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "iceberg-catalog.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "iceberg-catalog.labels" . | nindent 4 }}
app.kubernetes.io/component: catalog
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "iceberg-catalog.fullname" . }}
minReplicas: {{ .Values.catalog.replicas }}
maxReplicas: {{ .Values.catalog.autoscaling.maxReplicas }}
metrics:
{{- toYaml .Values.catalog.autoscaling.metrics | nindent 4 }}
{{- end }}