From eea685065a2261caa93f87075cfa5fd5b86e6152 Mon Sep 17 00:00:00 2001 From: IvanHunters Date: Tue, 4 Nov 2025 01:59:16 +0300 Subject: [PATCH] [flux] Close Flux Operator ports to external access This patch updates the Flux Operator Deployment to remove hostPort and hostNetwork, ensuring that ports 8080 and 8081 are only accessible within the cluster. This prevents external exposure and improves security. ```release-note [flux] Close Flux Operator ports (8080/8081) to external access for improved security. ``` Signed-off-by: IvanHunters --- packages/system/fluxcd-operator/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/fluxcd-operator/values.yaml b/packages/system/fluxcd-operator/values.yaml index 9053689a..250c19c4 100644 --- a/packages/system/fluxcd-operator/values.yaml +++ b/packages/system/fluxcd-operator/values.yaml @@ -4,7 +4,7 @@ flux-operator: - key: node.kubernetes.io/not-ready operator: Exists effect: NoSchedule - hostNetwork: true + hostNetwork: false resources: limits: cpu: 100m