66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
|
image:
|
||
|
repository: gaseousgames/gaseousserver
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: v1.7.1@sha256:ebbd35645d8e15e48fbf8b5af4adde9ac65e3aad3b0de627dacb2a012feff723
|
||
|
|
||
|
securityContext:
|
||
|
container:
|
||
|
readOnlyRootFilesystem: false
|
||
|
runAsUser: 0
|
||
|
runAsGroup: 0
|
||
|
|
||
|
service:
|
||
|
main:
|
||
|
ports:
|
||
|
main:
|
||
|
protocol: http
|
||
|
targetPort: 80
|
||
|
port: 5198
|
||
|
|
||
|
gaseous:
|
||
|
igdb:
|
||
|
id: ""
|
||
|
secret: ""
|
||
|
|
||
|
workload:
|
||
|
main:
|
||
|
podSpec:
|
||
|
containers:
|
||
|
main:
|
||
|
env:
|
||
|
dbhost:
|
||
|
secretKeyRef:
|
||
|
expandObjectName: false
|
||
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
||
|
key: plainhost
|
||
|
dbuser: "{{ .Values.mariadb.mariadbUsername }}"
|
||
|
dbname: "{{ .Values.mariadb.mariadbDatabase }}"
|
||
|
dbpass:
|
||
|
secretKeyRef:
|
||
|
expandObjectName: false
|
||
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
||
|
key: mariadb-password
|
||
|
dbport: 3306
|
||
|
igdbclientid: "{{ .Values.gaseous.igdb.id }}"
|
||
|
igdbclientsecret: "{{ .Values.gaseous.igdb.secret }}"
|
||
|
|
||
|
persistence:
|
||
|
config:
|
||
|
enabled: true
|
||
|
mountPath: "/root/.gaseous-server"
|
||
|
logs:
|
||
|
enabled: true
|
||
|
mountPath: "/root/.gaseous-server/Logs"
|
||
|
data:
|
||
|
enabled: true
|
||
|
mountPath: "/root/.gaseous-server/Data"
|
||
|
|
||
|
mariadb:
|
||
|
enabled: true
|
||
|
mariadbUsername: gaseous
|
||
|
mariadbDatabase: gaseous
|
||
|
|
||
|
portal:
|
||
|
open:
|
||
|
enabled: true
|