From e9326b0a2b15879b43a895725eece08ef353b045 Mon Sep 17 00:00:00 2001 From: Alaa Attya Date: Sat, 2 Oct 2021 15:29:05 +0200 Subject: [PATCH] Add config value for ingress path Signed-off-by: Alaa Attya (+6 squashed commits) Squashed commits: [fdea72a] fix typo Signed-off-by: Alaa Attya Signed-off-by: Alaa Attya [2af80af] Update share-manager image to v1_20210914 This fixes the previously created RWX volumes that were marked as XFS but got created as EXT4 since we only supported EXT4 at the time. Longhorn #2991 Signed-off-by: Joshua Moody Signed-off-by: Alaa Attya [350d8cb] update questions.yaml Signed-off-by: Alaa Attya [ed4846e] update questions.yaml Signed-off-by: Alaa Attya [b8db363] updates Signed-off-by: Alaa Attya [a3b8719] update labels Signed-off-by: Alaa Attya update labels Signed-off-by: Alaa Attya Revert "Update chart/values.yaml" This reverts commit 94cebff301ba24779daef0d83222350321814dd4. Revert "Revert "Update chart/values.yaml"" This reverts commit d0528ef7bf79d60b26bcd961438a0026e58eac01. updates Revert "updates" This reverts commit 0d47279b4edb2b170c831e462745079148bcd678. Revert "Revert "Revert "Update chart/values.yaml""" This reverts commit f64503db10b58f374c614471a573893af4594ca4. Revert "Revert "Update chart/values.yaml"" This reverts commit d0528ef7bf79d60b26bcd961438a0026e58eac01. Revert "Update chart/values.yaml" This reverts commit 94cebff301ba24779daef0d83222350321814dd4. Revert "Revert "Update chart/values.yaml"" This reverts commit 15bf7bebf08535d24ee8636ae6f8013b871ca0a8. updates updates --- chart/questions.yaml | 6 ++++++ chart/values.yaml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/chart/questions.yaml b/chart/questions.yaml index c96a3f7..15c1944 100644 --- a/chart/questions.yaml +++ b/chart/questions.yaml @@ -593,6 +593,12 @@ WARNING: type: hostname required: true label: Layer 7 Load Balancer Hostname + - variable: ingress.path + default: "/" + description: "If ingress is enabled you can set the default ingress path" + type: string + required: true + label: Ingress Path - variable: service.ui.type default: "Rancher-Proxy" description: "Define Longhorn UI service type" diff --git a/chart/values.yaml b/chart/values.yaml index e43af59..9782df8 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -193,6 +193,10 @@ ingress: ## If TLS is set to true, you must declare what secret will store the key/certificate for TLS tlsSecret: longhorn.local-tls + ## If ingress is enabled you can set the default ingress path + ## then you can access the UI by using the following full path {{host}}+{{path}} + path: / + ## Ingress annotations done as key:value pairs ## If you're using kube-lego, you will want to add: ## kubernetes.io/tls-acme: true