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 }}
|
||||
|
||||
@@ -25,7 +25,7 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/invidious
|
||||
- https://github.com/iv-org/invidious
|
||||
- https://docs.invidious.io/installation/#docker
|
||||
version: 1.0.2
|
||||
version: 1.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
|
||||
@@ -59,7 +59,7 @@ stringData:
|
||||
registration_enabled: {{ $vUserAcc.registration_enabled }}
|
||||
login_enabled: {{ $vUserAcc.login_enabled }}
|
||||
captcha_enabled: {{ $vUserAcc.captcha_enabled }}
|
||||
{{- if $vUserAcc.admins -}}
|
||||
{{- if $vUserAcc.admins }}
|
||||
admins:
|
||||
{{- range $vUserAcc.admins }}
|
||||
- {{ . }}
|
||||
|
||||
Reference in New Issue
Block a user