fix(incubator): some cleanup (#3586)
* fix(arksurvival): cleanup * cleanup * update questions * chore(incubator): some cleanup * remove enabled true from main services * bump all incubator * lint * empty lines * emtpy line
This commit is contained in:
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 0.0.17
|
||||
version: 0.0.19
|
||||
|
||||
@@ -12,6 +12,26 @@ questions:
|
||||
# Include{recreate}
|
||||
# Include{controllerExpert}
|
||||
# Include{controllerExpertExtraArgs}
|
||||
- variable: secretEnv
|
||||
group: "Container Configuration"
|
||||
label: "Image Secrets"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: USERNAME
|
||||
label: "USERNAME"
|
||||
description: "Your Steam username goes here if you want to install a game that needs a valid account, otherwise leave it blank (ATTENTION You have to disable Steam Guard)."
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: PASSWRD
|
||||
label: "PASSWRD"
|
||||
description: "Your Steam password goes here if you want to install a game that needs a valid account, otherwise leave it blank (ATTENTION You have to disable Steam Guard)."
|
||||
schema:
|
||||
type: string
|
||||
private: true
|
||||
default: ""
|
||||
- variable: env
|
||||
group: "Container Configuration"
|
||||
label: "Image Environment"
|
||||
@@ -20,43 +40,31 @@ questions:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: GAME_ID
|
||||
label: 'GAME_ID'
|
||||
description: "The GAMEID that the container download at startup.(httpsdeveloper.valvesoftware.comwikiDedicatedServersList)"
|
||||
label: "GAME_ID"
|
||||
description: "The GAME_ID that the container download at startup.(https://developer.valvesoftware.com/wiki/Dedicated_Servers_List)"
|
||||
schema:
|
||||
type: string
|
||||
default: "232290"
|
||||
- variable: GAME_NAME
|
||||
label: 'GAME_NAME'
|
||||
label: "GAME_NAME"
|
||||
description: "Game name to start (is connected to the GAMEPARAMS)."
|
||||
schema:
|
||||
type: string
|
||||
default: "dod"
|
||||
- variable: GAME_PARAMS
|
||||
label: 'GAME_PARAMS'
|
||||
label: "GAME_PARAMS"
|
||||
description: "Enter your start up commands for the server."
|
||||
schema:
|
||||
type: string
|
||||
default: "-secure +maxplayers 24 +map dod_kalt"
|
||||
- variable: USERNAME
|
||||
label: 'USERNAME'
|
||||
description: "Your Steam username goes here if you want to install a game that needs a valid account, otherwise leave it blank (ATTENTION You have to disable Steam Guard)."
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: VALIDATE
|
||||
label: 'VALIDATE'
|
||||
label: "VALIDATE"
|
||||
description: "Set the Variable to true if you want to validate the installation otherwise leave it blank."
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: PASSWRD
|
||||
label: 'PASSWRD'
|
||||
description: "Your Steam password goes here if you want to install a game that needs a valid account, otherwise leave it blank (ATTENTION You have to disable Steam Guard)."
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: GAME_PORT
|
||||
label: 'GAME_PORT'
|
||||
label: "GAME_PORT"
|
||||
description: "Container Variable GAMEPORT"
|
||||
schema:
|
||||
type: string
|
||||
|
||||
@@ -1,25 +1,27 @@
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/dayofdefeatsource
|
||||
tag: latest@sha256:34a328de3107fd3e55203bc6c0638cb1e102422eea97af37d13b518b89660fda
|
||||
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
|
||||
secretEnv:
|
||||
USERNAME: ""
|
||||
PASSWRD: ""
|
||||
|
||||
env:
|
||||
GAME_ID: "232290"
|
||||
GAME_NAME: dod
|
||||
GAME_PARAMS: -secure +maxplayers 24 +map dod_kalt
|
||||
GAME_PORT: "27015"
|
||||
PASSWRD: ""
|
||||
USERNAME: ""
|
||||
VALIDATE: ""
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/dayofdefeatsource
|
||||
tag: latest@sha256:34a328de3107fd3e55203bc6c0638cb1e102422eea97af37d13b518b89660fda
|
||||
persistence:
|
||||
serverfiles:
|
||||
enabled: true
|
||||
mountPath: /serverdata/serverfiles
|
||||
steamcmd:
|
||||
enabled: true
|
||||
mountPath: /serverdata/steamcmd
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
VALIDATE: false
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
port: "{{ .Values.service.tcprcon.ports.tcprcon.targetPort }}"
|
||||
@@ -27,15 +29,11 @@ probes:
|
||||
port: "{{ .Values.service.tcprcon.ports.tcprcon.targetPort }}"
|
||||
startup:
|
||||
port: "{{ .Values.service.tcprcon.ports.tcprcon.targetPort }}"
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
|
||||
service:
|
||||
main:
|
||||
enabled: true
|
||||
ports:
|
||||
main:
|
||||
enabled: true
|
||||
port: 27015
|
||||
protocol: UDP
|
||||
targetPort: 27015
|
||||
@@ -48,5 +46,13 @@ service:
|
||||
protocol: TCP
|
||||
targetPort: 27015
|
||||
|
||||
persistence:
|
||||
serverfiles:
|
||||
enabled: true
|
||||
mountPath: /serverdata/serverfiles
|
||||
steamcmd:
|
||||
enabled: true
|
||||
mountPath: /serverdata/steamcmd
|
||||
|
||||
portal:
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user