From ebceee184048d690c19762dea43c5e58e7b87526 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sun, 28 Jan 2024 01:12:14 +0100 Subject: [PATCH] apps(minecraft): Fix voicechat udp route --- apps/minecraft/app/release.yaml | 2 +- apps/minecraft/app/route.yaml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/minecraft/app/release.yaml b/apps/minecraft/app/release.yaml index 29409a7..8002cd8 100644 --- a/apps/minecraft/app/release.yaml +++ b/apps/minecraft/app/release.yaml @@ -43,7 +43,7 @@ spec: extraPorts: - name: voicechat containerPort: 24454 - protocol: TCP + protocol: UDP ingress: enabled: false service: diff --git a/apps/minecraft/app/route.yaml b/apps/minecraft/app/route.yaml index ee13fa0..e8827ab 100644 --- a/apps/minecraft/app/route.yaml +++ b/apps/minecraft/app/route.yaml @@ -19,10 +19,9 @@ metadata: namespace: minecraft spec: entryPoints: - - minecraft-voice + - sct-discovery routes: - - match: HostSNI(`*`) - services: + - services: - name: minecraft-minecraft port: voicechat ---