Add openmetadata chart

This commit is contained in:
wbsong111
2026-02-27 14:51:57 +09:00
parent b2855ccba3
commit 864f99a589
323 changed files with 54891 additions and 0 deletions
@@ -0,0 +1,24 @@
{{- if .Values.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: {{ include "OpenMetadata.fullname" . }}-networkpolicy
labels:
{{- include "OpenMetadata.labels" . | indent 4 }}
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
podSelector:
matchLabels: {{- include "OpenMetadata.selectorLabels" . | nindent 6 }}
policyTypes:
- Ingress
# Allow inbound connections
ingress:
- ports:
- port: {{ .Values.service.port }}
protocol: TCP
- port: {{ .Values.service.adminPort }}
protocol: TCP
{{- end }}