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" appVersion: "2.7.4"
description: This server allows you to sync any Joplin client description: This server allows you to sync any Joplin client
name: joplin-server name: joplin-server
version: 8.1.0 version: 8.1.1
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- joplin - joplin

View File

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