From d7b63eb1d0fd8f4b729e4d725a7ae76fccad48e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20J=C3=B6rg?= Date: Thu, 20 Nov 2025 10:49:06 +0100 Subject: [PATCH] fix(openfga): Cnp allow cnpg status --- .../manifests/policies/allow-cnpg-status.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 values/openfga/manifests/policies/allow-cnpg-status.yaml diff --git a/values/openfga/manifests/policies/allow-cnpg-status.yaml b/values/openfga/manifests/policies/allow-cnpg-status.yaml new file mode 100644 index 00000000..79f3abca --- /dev/null +++ b/values/openfga/manifests/policies/allow-cnpg-status.yaml @@ -0,0 +1,15 @@ +{{- if .Values.clusterConfig.cilium.enabled }} +apiVersion: cilium.io/v2 +kind: CiliumNetworkPolicy +metadata: + name: allow-cnpg-status + namespace: openfga +spec: + ingress: + - fromEntities: + - remote-node + toPorts: + - ports: + - port: "8000" + protocol: TCP +{{- end }}