diff --git a/services/game-stream/wolf-gatekeeper-configmap.yaml b/services/game-stream/wolf-gatekeeper-configmap.yaml index 3c0d6bfa..7b9bc4c1 100644 --- a/services/game-stream/wolf-gatekeeper-configmap.yaml +++ b/services/game-stream/wolf-gatekeeper-configmap.yaml @@ -14,7 +14,7 @@ data: import re import subprocess - LISTEN = ("0.0.0.0", int(os.environ.get("WOLF_GATEKEEPER_PORT", "8087"))) + LISTEN = ("0.0.0.0", int(os.environ.get("GATEKEEPER_HTTP_PORT", "8087"))) HOST_ROOT = os.environ.get("HOST_ROOT", "/host") NFT_PATH = os.environ.get("NFT_PATH", "/sbin/nft") MAX_TTL_SECONDS = int(os.environ.get("MAX_TTL_SECONDS", "28800")) diff --git a/services/game-stream/wolf-gatekeeper-daemonset.yaml b/services/game-stream/wolf-gatekeeper-daemonset.yaml index 81ecc64a..775b44a4 100644 --- a/services/game-stream/wolf-gatekeeper-daemonset.yaml +++ b/services/game-stream/wolf-gatekeeper-daemonset.yaml @@ -35,6 +35,8 @@ spec: value: /sbin/nft - name: MAX_TTL_SECONDS value: "28800" + - name: GATEKEEPER_HTTP_PORT + value: "8087" ports: - name: http containerPort: 8087