chore(joplin-server): fix show-if's (#4037)

This commit is contained in:
Stavros Kois 2022-10-09 03:21:49 +03:00 committed by GitHub
parent 5293a26245
commit 13a70fbade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "2.7.4"
description: This server allows you to sync any Joplin client
name: joplin-server
version: 8.1.0
version: 8.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- joplin

View File

@ -38,35 +38,35 @@ questions:
label: Mailer Host
description: Sets the MAILER_HOST env var, eg smtp.example.com
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: string
default: ""
- variable: MAILER_PORT
label: Mailer Port
description: Sets the MAILER_PORT env var, eg SMTP PORT 465
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: int
default: 465
- variable: MAILER_SECURE
label: Mailer Secure
description: Sets the MAILER_SECURE env var, HTTPS for the smtp
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: boolean
default: true
- variable: MAILER_AUTH_USER
label: Mailer Auth User
description: Sets the MAILER_AUTH_USER env var, username for Email server
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: string
default: ""
- variable: MAILER_AUTH_PASSWORD
label: Mailer Auth Password
description: Sets the MAILER_AUTH_PASSWORD env var, password for Email server
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: string
private: true
default: ""
@ -74,14 +74,14 @@ questions:
label: Mailer No Reply Name
description: Sets the MAILER_NOREPLY_NAME env var, No Reply email name
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: string
default: ""
- variable: MAILER_NOREPLY_EMAIL
label: Mailer No Reply Email
description: Sets the MAILER_NOREPLY_EMAIL env var, No Reply default email
schema:
show_if: [["MAILER_ENABLED", "=", "1"]]
show_if: [["MAILER_ENABLED", "=", 1]]
type: string
default: ""
# Include{containerConfig}