[argo-helm/argo] Added possibility to override BASE_HREF env variables through values
Signed-off-by: Leonid Prytuliak <prytuliak.l@gmail.com>
This commit is contained in:
parent
792f112ac7
commit
a823958441
3 changed files with 4 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "v2.4.3"
|
appVersion: "v2.4.3"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.6.5
|
version: 0.6.6
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -49,7 +49,7 @@ spec:
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
fieldPath: metadata.namespace
|
fieldPath: metadata.namespace
|
||||||
- name: BASE_HREF
|
- name: BASE_HREF
|
||||||
value: /
|
value: {{ .Values.ui.baseHref }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.ui.resources | nindent 12 }}
|
{{- toYaml .Values.ui.resources | nindent 12 }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -98,6 +98,8 @@ ui:
|
||||||
enabled: true
|
enabled: true
|
||||||
# only show workflows where UI installed
|
# only show workflows where UI installed
|
||||||
forceNamespaceIsolation: false
|
forceNamespaceIsolation: false
|
||||||
|
# UI BASE_HREF env variable
|
||||||
|
baseHref: /
|
||||||
image:
|
image:
|
||||||
# Overrides .images.tag if defined.
|
# Overrides .images.tag if defined.
|
||||||
tag: ""
|
tag: ""
|
||||||
|
|
Loading…
Reference in a new issue