game-stream: avoid gatekeeper service env collision

This commit is contained in:
jenkins 2026-05-21 16:23:08 -03:00
parent d89fec8ae5
commit f064c5b47b
2 changed files with 3 additions and 1 deletions

View File

@ -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"))

View File

@ -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