From 7271107890ea6d0a7d2b3890ef8c4c9903334da2 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Wed, 5 Nov 2025 20:24:27 -0500 Subject: [PATCH] fix: Change nginx-mycelium deployment from hostNetwork to ClusterFirst and update ports to 8080 --- examples/nginx-mycelium/mycelium-website-hostnetwork.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml b/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml index 00477a8..3b23c0e 100644 --- a/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml +++ b/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml @@ -14,14 +14,13 @@ spec: labels: app: mycelium-website spec: - hostNetwork: true dnsPolicy: ClusterFirst containers: - name: nginx image: nginx:alpine ports: - - containerPort: 80 - hostPort: 80 + - containerPort: 8080 + hostPort: 8080 volumeMounts: - name: html-content mountPath: /usr/share/nginx/html @@ -176,7 +175,7 @@ metadata: data: default.conf: | server { - listen 80; + listen 8080; server_name _; location / {