Merge pull request #1 from sagansystems/add-ability-to-not-deploy-ui
Add ability to not deploy Argo UI
This commit is contained in:
commit
7343110ebf
3 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
apiVersion: v1
|
||||
description: A Helm chart for Kubernetes
|
||||
name: argo
|
||||
version: 0.1.1
|
||||
version: 0.2.0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{ if .Values.ui.enabled }}
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
|
@ -19,3 +20,4 @@ spec:
|
|||
env:
|
||||
- name: IN_CLUSTER
|
||||
value: "true"
|
||||
{{ end }}
|
|
@ -5,6 +5,8 @@ executorImage: argoexec
|
|||
imagesTag: v2.1.0-alpha1
|
||||
controllerName: workflow-controller
|
||||
|
||||
ui:
|
||||
enabled: true
|
||||
# Enables ability to SSH into pod using web UI
|
||||
enableWebConsole: false
|
||||
uiName: ui
|
||||
|
|
Loading…
Reference in a new issue