From 4b27501a3869086c5214daa0b89e25f451cc2c61 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Wed, 27 Apr 2022 03:13:44 +0200 Subject: [PATCH] fix(starboard): Disable network policies from starboard-exporter This patch disables the network policies from starboard-exporter in order to allow other containers remote calls, as the exporter network policy provides a simple, but in this case harmful, egress policy, that will prevent any external communication. --- infrastructure/starboard/monitoring.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infrastructure/starboard/monitoring.yaml b/infrastructure/starboard/monitoring.yaml index 2dbb497b6..49d22a458 100644 --- a/infrastructure/starboard/monitoring.yaml +++ b/infrastructure/starboard/monitoring.yaml @@ -23,3 +23,6 @@ spec: namespace: starboard-system version: 0.3.3 interval: 5m + values: + networkpolicy: + enabled: true -- GitLab