From 018e46962e452bbc60d94e8e558cc75edabc5287 Mon Sep 17 00:00:00 2001 From: Kris Nova Date: Mon, 6 Mar 2017 12:59:52 -0700 Subject: [PATCH] feature(ingress): Experimental Native Ingress Adding global.experimental_native_ingress flag to values.yaml so this can be ran standalone Non breaking change, just semantic --- charts/router/values.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/charts/router/values.yaml b/charts/router/values.yaml index 7392582..0f2c056 100644 --- a/charts/router/values.yaml +++ b/charts/router/values.yaml @@ -24,3 +24,11 @@ host_port: # Service type default to LoadBalancer # service_type: LoadBalancer + +global: + # Experimental feature to toggle using kubernetes ingress instead of the Deis router. + # + # Valid values are: + # - true: The Deis router will NOT be deployed. Inherently workflow will not be usable until a Kubernetes ingress controller is installed. + # - false: The default mode, and the default behavior of Deis workflow. + experimental_native_ingress: false