Skip to content

Commit

Permalink
feat: update vrising config
Browse files Browse the repository at this point in the history
  • Loading branch information
joryirving committed Jan 5, 2025
1 parent 3eec766 commit 3d1c461
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions kubernetes/main/apps/games/vrising/app/externalsecret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ spec:
template:
engineVersion: v2
data:
VR_DESCRIPTION: "{{ .VR_DESCRIPTION }}"
VR_LOWER_FPS_WHEN_EMPTY: "{{ .VR_LOWER_FPS_WHEN_EMPTY }}"
VR_PASSWORD: "{{ .VR_PASSWORD }}"
VR_SERVER_NAME: "{{ .VR_SERVER_NAME }}"
VR_LOWER_FPS_WHEN_EMPTY: "{{ .VR_LOWER_FPS_WHEN_EMPTY }}"
VR_SECURE: "{{ .VR_SECURE }}"
VR_DIFFICULTY_PRESET: "{{ .VR_DIFFICULTY_PRESET }}"
SERVERNAME: "{{ .VR_SERVER_NAME }}"
dataFrom:
- extract:
Expand Down
10 changes: 6 additions & 4 deletions kubernetes/main/apps/games/vrising/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ spec:
env:
## Container Settings
TZ: ${TIMEZONE}
SERVERNAME: "Smurf-VRising"
SERVERNAME: "Smurf-Rising"
GAMEPORT: &game 9876
QUERYPORT: &query 9877
MAX_USERS: 4
MAX_ADMIN: 2
UID: &uid 1000
GID: &gid 1000
# envFrom:
# - secretRef:
# name: vrising-secret
Expand All @@ -62,9 +64,9 @@ spec:
defaultPodOptions:
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
runAsUser: *uid
runAsGroup: *gid
fsGroup: *gid
fsGroupChangePolicy: OnRootMismatch
seccompProfile: { type: RuntimeDefault }
service:
Expand Down

0 comments on commit 3d1c461

Please sign in to comment.