Add ability to not deploy Argo UI

This commit is contained in:
Matt Baker 2018-05-31 14:16:04 -07:00
parent 92599031ec
commit 0b0e42c6ca
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,4 @@
{{ if .Values.ui.enabled }}
apiVersion: extensions/v1beta1 apiVersion: extensions/v1beta1
kind: Deployment kind: Deployment
metadata: metadata:
@ -19,3 +20,4 @@ spec:
env: env:
- name: IN_CLUSTER - name: IN_CLUSTER
value: "true" value: "true"
{{ end }}

View file

@ -5,6 +5,8 @@ executorImage: argoexec
imagesTag: v2.1.0-alpha1 imagesTag: v2.1.0-alpha1
controllerName: workflow-controller controllerName: workflow-controller
ui:
enabled: true
# Enables ability to SSH into pod using web UI # Enables ability to SSH into pod using web UI
enableWebConsole: false enableWebConsole: false
uiName: ui uiName: ui