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
|
apiVersion: v1
|
||||||
description: A Helm chart for Kubernetes
|
description: A Helm chart for Kubernetes
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.1.1
|
version: 0.2.0
|
||||||
|
|
|
@ -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 }}
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue