Bootstrap initial repo state

This commit is contained in:
2025-09-07 23:39:44 +02:00
parent 0ed92847f8
commit ed68e97829
20 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{{- if .Values.networkPolicy.enabled }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: mcp-telemetry-bridge-deny-all
spec:
podSelector:
matchLabels:
app: mcp-telemetry-bridge
policyTypes: ["Ingress","Egress"]
ingress:
- {} # allow same-namespace by default; tighten as needed
egress:
- to:
- namespaceSelector: {}
ports:
- protocol: TCP
port: 9090 # Prometheus
- protocol: TCP
port: 3100 # Loki
{{- end }}