From 0bcd23009cdda48591a259c464b3449c3af10a31 Mon Sep 17 00:00:00 2001 From: ab Date: Fri, 25 Jul 2025 15:45:28 +0000 Subject: [PATCH] Update k8s/games/minecraft/services.yaml --- k8s/games/minecraft/services.yaml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/k8s/games/minecraft/services.yaml b/k8s/games/minecraft/services.yaml index 5ecf178..b87fce9 100644 --- a/k8s/games/minecraft/services.yaml +++ b/k8s/games/minecraft/services.yaml @@ -3,7 +3,6 @@ apiVersion: v1 kind: Service metadata: name: minecraft-dynmap - namespace: minecraft spec: selector: app: minecraft @@ -12,20 +11,29 @@ spec: port: 80 targetPort: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: minecraft-webstatus-mod +spec: + selector: + app: minecraft + ports: + - protocol: TCP + port: 8080 + targetPort: 8080 + --- apiVersion: v1 kind: Service metadata: name: minecraft-game - namespace: minecraft spec: type: LoadBalancer ports: - port: 30565 targetPort: 25565 - - port: 30575 - targetPort: 25575 - protocol: TCP selector: app: minecraft