From b50cb50f1468e89f3ba45ed81e75bd2c6de99086 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Fri, 28 Nov 2025 12:49:54 -0800 Subject: [PATCH] set host networking to false --- kubernetes/03-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes/03-deployment.yaml b/kubernetes/03-deployment.yaml index ec671b7..68368a5 100644 --- a/kubernetes/03-deployment.yaml +++ b/kubernetes/03-deployment.yaml @@ -14,9 +14,9 @@ spec: labels: app: socktop-webterm spec: - # Use host network to access Raspberry Pi nodes on port 8443 - hostNetwork: true - dnsPolicy: ClusterFirstWithHostNet + # Use standard pod networking + hostNetwork: false + dnsPolicy: ClusterFirst containers: - name: webterm