Files
service-catalog/manifests/helm/lakekeeper/0.11.0/templates/catalog/catalog-service.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

49 lines
1.8 KiB
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "iceberg-catalog.fullname" . }}
namespace: {{ .Release.Namespace }}
{{- if .Values.catalog.service.annotations }}
annotations:
{{- toYaml .Values.catalog.service.annotations | nindent 4 }}
{{- end }}
labels:
{{- include "iceberg-catalog.labels" . | nindent 4 }}
app.kubernetes.io/component: catalog
spec:
type: {{ .Values.catalog.service.type }}
sessionAffinity: {{ .Values.catalog.service.sessionAffinity }}
{{- if .Values.catalog.service.sessionAffinityConfig }}
sessionAffinityConfig:
{{- toYaml .Values.catalog.service.sessionAffinityConfig | nindent 4 }}
{{- end }}
ports:
- port: {{ .Values.catalog.service.externalPort | default 8181 }}
targetPort: http
protocol: TCP
{{- if and (eq .Values.catalog.service.type "NodePort") (.Values.catalog.service.nodePort.http) }}
nodePort: {{ .Values.catalog.service.nodePort.http }}
{{- end }}
name: http
{{- if .Values.catalog.prometheus.setScrapeAnnotations }}
- port: {{ .Values.catalog.prometheus.port }}
targetPort: metrics
protocol: TCP
{{- if and (eq .Values.catalog.service.type "NodePort") (.Values.catalog.service.nodePort.metrics) }}
nodePort: {{ .Values.catalog.service.nodePort.metrics }}
{{- end }}
name: metrics
{{- end }}
selector:
{{- include "iceberg-catalog.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: catalog
{{- if eq .Values.catalog.service.type "LoadBalancer" }}
{{- if .Values.catalog.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.catalog.service.loadBalancerIP | quote }}
{{- end }}
{{- if .Values.catalog.service.loadBalancerSourceRanges }}
loadBalancerSourceRanges:
{{- toYaml .Values.catalog.service.loadBalancerSourceRanges | nindent 4 }}
{{- end }}
{{- end }}