From 80a22198ca1033536156ee69d1ceb4c836b5ec90 Mon Sep 17 00:00:00 2001 From: h0lybyte <5599058+h0lybyte@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:14:46 -0500 Subject: [PATCH] ci(kube): hard coded the port value, left a note to come back to it in the future. Co-authored-by: Fudster --- .../rareicon/gameserver/templates/axum-gameserver.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migrations/kube/charts/rareicon/gameserver/templates/axum-gameserver.yaml b/migrations/kube/charts/rareicon/gameserver/templates/axum-gameserver.yaml index 52a4f7915..5e1187870 100644 --- a/migrations/kube/charts/rareicon/gameserver/templates/axum-gameserver.yaml +++ b/migrations/kube/charts/rareicon/gameserver/templates/axum-gameserver.yaml @@ -54,7 +54,7 @@ spec: --- -# WebSocket Ingress +# WebSocket Ingress - TODO: Values {{- if .Values.gameserver.ingress.enabled }} apiVersion: networking.k8s.io/v1 kind: Ingress @@ -75,14 +75,14 @@ spec: service: name: rareicon-service port: - number: {{ (index .Values.gameserver.service.ports | where "name" "tcp" | first).port | default 3000 }} + number: 3000 - path: /ws/ pathType: Prefix backend: service: name: rareicon-service port: - number: {{ (index .Values.gameserver.service.ports | where "name" "tcp" | first).port | default 3000 }} + number: 3000 {{- end }} ---