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