Skip to content

Commit

Permalink
fix(poketwo): gateway-proxy service port
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Jul 15, 2024
1 parent 5fd502e commit 074fbee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubernetes/poketwo/gateway-proxy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

v1.Service.gateway-proxy.spec = {
selector.app = "gateway-proxy";
ports = [{ port = 7878; }];
ports = [{ port = 80; targetPort = 7878; }];
};

v1.Secret.poketwo.stringData = {
Expand All @@ -57,7 +57,7 @@
status = "online";
backpressure = 100;
validate_token = true;
externally_accessible_url = "ws://gateway-proxy.poketwo.svc.cluster.local:7878";
externally_accessible_url = "ws://gateway-proxy.poketwo.svc.cluster.local";
cache = {
channels = true;
presences = false;
Expand Down

0 comments on commit 074fbee

Please sign in to comment.