Skip to content

Commit 20989e4

Browse files
authored
Merge pull request #495 from kris-nova/byo-ingress
feat(ingress) Experimental Native Ingress
2 parents 4dfce85 + 9a2a1b4 commit 20989e4

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

charts/builder/templates/builder-service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ spec:
1111
targetPort: 2223
1212
selector:
1313
app: deis-builder
14+
{{ if .Values.global.experimental_native_ingress }}
15+
type: "LoadBalancer"
16+
{{ end }}

charts/builder/values.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,12 @@ pull_policy: "Always"
33
docker_tag: canary
44
# limits_cpu: "100m"
55
# limits_memory: "50Mi"
6-
# builder_pod_node_selector: "disk:ssd"
6+
# builder_pod_node_selector: "disk:ssd"
7+
8+
global:
9+
# Experimental feature to toggle using kubernetes ingress instead of the Deis router.
10+
#
11+
# Valid values are:
12+
# - true: The deis controller will now create Kubernetes ingress rules for each app, and ingress rules will automatically be created for the controller itself.
13+
# - false: The default mode, and the default behavior of Deis workflow.
14+
experimental_native_ingress: false

0 commit comments

Comments
 (0)