From 13a70fbade9514cc93bd0a578d80a7094ce19ab1 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 9 Oct 2022 03:21:49 +0300 Subject: [PATCH] chore(joplin-server): fix show-if's (#4037) --- charts/stable/joplin-server/Chart.yaml | 2 +- charts/stable/joplin-server/questions.yaml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/stable/joplin-server/Chart.yaml b/charts/stable/joplin-server/Chart.yaml index fb18231ccda..53ba38ad152 100644 --- a/charts/stable/joplin-server/Chart.yaml +++ b/charts/stable/joplin-server/Chart.yaml @@ -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 diff --git a/charts/stable/joplin-server/questions.yaml b/charts/stable/joplin-server/questions.yaml index 02b30a5a8f0..86fbc19593c 100644 --- a/charts/stable/joplin-server/questions.yaml +++ b/charts/stable/joplin-server/questions.yaml @@ -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}