feat: Add comprehensive nginx-mycelium deployment with global IPv6 access

This commit is contained in:
mik-tf
2025-11-05 09:00:24 -05:00
parent 7009f89f1d
commit 9f360c1528
13 changed files with 2133 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
apiVersion: v1
kind: Service
metadata:
name: nginx-mycelium
namespace: default
labels:
app: nginx-mycelium
network: mycelium
spec:
type: NodePort
ports:
- name: http
port: 80
targetPort: 80
nodePort: 30090
protocol: TCP
selector:
app: nginx-mycelium
---
apiVersion: v1
kind: Service
metadata:
name: nginx-mycelium-cluster
namespace: default
labels:
app: nginx-mycelium
type: cluster
spec:
type: ClusterIP
ports:
- name: http
port: 80
targetPort: 80
protocol: TCP
selector:
app: nginx-mycelium