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://survivetheark.com/
|
||||||
- https://hub.docker.com/r/ich777/steamcmd/
|
- https://hub.docker.com/r/ich777/steamcmd/
|
||||||
type: application
|
type: application
|
||||||
version: 3.0.2
|
version: 3.0.3
|
||||||
|
|||||||
@@ -47,12 +47,13 @@ questions:
|
|||||||
description: "The SteamCMD Game ID."
|
description: "The SteamCMD Game ID."
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
required: true
|
||||||
default: "376030"
|
default: "376030"
|
||||||
enum:
|
enum:
|
||||||
- value: "376030"
|
- value: "376030"
|
||||||
description: "ARK Survival Evolved"
|
description: ARK Survival Evolved
|
||||||
- value: "445400"
|
- value: "445400"
|
||||||
description: "ARK Survival of the Fittest"
|
description: ARK Survival of the Fittest
|
||||||
- variable: custom_map
|
- variable: custom_map
|
||||||
label: Custom Map
|
label: Custom Map
|
||||||
description: Custom Map name.
|
description: Custom Map name.
|
||||||
|
|||||||
@@ -39,12 +39,8 @@ stringData:
|
|||||||
SERVER_NAME: {{ . | quote }}
|
SERVER_NAME: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
VALIDATE: {{ default false .Values.ark.validate | quote }}
|
VALIDATE: {{ default false .Values.ark.validate | quote }}
|
||||||
{{- with .Values.ark.srv_admin_pass }}
|
SRV_ADMIN_PWD: {{ .Values.ark.srv_admin_pass | quote }}
|
||||||
SRV_ADMIN_PWD: {{ . | quote }}
|
SRV_PWD: {{ .Values.ark.srv_password | quote }}
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.ark.srv_password }}
|
|
||||||
SRV_PWD: {{ . | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.ark.username }}
|
{{- with .Values.ark.username }}
|
||||||
USERNAME: {{ . | quote }}
|
USERNAME: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/invidious
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/invidious
|
||||||
- https://github.com/iv-org/invidious
|
- https://github.com/iv-org/invidious
|
||||||
- https://docs.invidious.io/installation/#docker
|
- https://docs.invidious.io/installation/#docker
|
||||||
version: 1.0.2
|
version: 1.0.3
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ stringData:
|
|||||||
registration_enabled: {{ $vUserAcc.registration_enabled }}
|
registration_enabled: {{ $vUserAcc.registration_enabled }}
|
||||||
login_enabled: {{ $vUserAcc.login_enabled }}
|
login_enabled: {{ $vUserAcc.login_enabled }}
|
||||||
captcha_enabled: {{ $vUserAcc.captcha_enabled }}
|
captcha_enabled: {{ $vUserAcc.captcha_enabled }}
|
||||||
{{- if $vUserAcc.admins -}}
|
{{- if $vUserAcc.admins }}
|
||||||
admins:
|
admins:
|
||||||
{{- range $vUserAcc.admins }}
|
{{- range $vUserAcc.admins }}
|
||||||
- {{ . }}
|
- {{ . }}
|
||||||
|
|||||||
Reference in New Issue
Block a user