fix(ark): allow empty srv password (#5813)
* fix(ark): allow empty srv password * fix(invidious): fix mapping in yaml
This commit is contained in:
@@ -26,4 +26,4 @@ sources:
|
||||
- https://survivetheark.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 3.0.2
|
||||
version: 3.0.3
|
||||
|
||||
@@ -47,12 +47,13 @@ questions:
|
||||
description: "The SteamCMD Game ID."
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "376030"
|
||||
enum:
|
||||
- value: "376030"
|
||||
description: "ARK Survival Evolved"
|
||||
description: ARK Survival Evolved
|
||||
- value: "445400"
|
||||
description: "ARK Survival of the Fittest"
|
||||
description: ARK Survival of the Fittest
|
||||
- variable: custom_map
|
||||
label: Custom Map
|
||||
description: Custom Map name.
|
||||
|
||||
@@ -39,12 +39,8 @@ stringData:
|
||||
SERVER_NAME: {{ . | quote }}
|
||||
{{- end }}
|
||||
VALIDATE: {{ default false .Values.ark.validate | quote }}
|
||||
{{- with .Values.ark.srv_admin_pass }}
|
||||
SRV_ADMIN_PWD: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.ark.srv_password }}
|
||||
SRV_PWD: {{ . | quote }}
|
||||
{{- end }}
|
||||
SRV_ADMIN_PWD: {{ .Values.ark.srv_admin_pass | quote }}
|
||||
SRV_PWD: {{ .Values.ark.srv_password | quote }}
|
||||
{{- with .Values.ark.username }}
|
||||
USERNAME: {{ . | quote }}
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user