From da0d4f39d649fff17caf2930ff99380e7239a9b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20J=C3=B6rg?= Date: Wed, 2 Jul 2025 20:09:18 +0200 Subject: [PATCH] fix(plume): Add policy to allow plumes --- values/atlantis/manifests/network/allow-plume.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 values/atlantis/manifests/network/allow-plume.yaml diff --git a/values/atlantis/manifests/network/allow-plume.yaml b/values/atlantis/manifests/network/allow-plume.yaml new file mode 100644 index 00000000..6d9e7953 --- /dev/null +++ b/values/atlantis/manifests/network/allow-plume.yaml @@ -0,0 +1,14 @@ +{{- if .Values.clusterConfig.cilium.enabled }} +apiVersion: cilium.io/v2 +kind: CiliumNetworkPolicy +metadata: + name: allow-plume + namespace: {{ .Release.Namespace }} +spec: + egress: + - toFQDNs: + - matchPattern: 'plume.data.oceanbox.io' + endpointSelector: + matchLabels: + app.kubernetes.io/name: atlantis +{{- end }}