From ffafbfee6364864f68384555eec900176470403a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20J=C3=B6rg?= Date: Sat, 15 Nov 2025 18:59:15 +0100 Subject: [PATCH] fix(atlantis): Allow Atlantis to 6379 TCP --- .../atlantis/manifests/network/allow-world.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 values/atlantis/manifests/network/allow-world.yaml diff --git a/values/atlantis/manifests/network/allow-world.yaml b/values/atlantis/manifests/network/allow-world.yaml new file mode 100644 index 00000000..ffe06b66 --- /dev/null +++ b/values/atlantis/manifests/network/allow-world.yaml @@ -0,0 +1,16 @@ +{{- if .Values.clusterConfig.cilium.enabled }} +apiVersion: cilium.io/v2 +kind: CiliumNetworkPolicy +metadata: + name: allow-world + namespace: {{ .Release.Namespace }} +spec: + egress: + - toPorts: + - ports: + - port: "6379" + protocol: TCP + endpointSelector: + matchLabels: + app.kubernetes.io/name: atlantis +{{- end }}