Add resources values to ui and controller (#95)
parent
8d281b387e
commit
77e638f55d
|
@ -2,4 +2,4 @@ apiVersion: v1
|
||||||
appVersion: "v2.3.0"
|
appVersion: "v2.3.0"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.5.0
|
version: 0.5.1
|
||||||
|
|
|
@ -36,4 +36,6 @@ spec:
|
||||||
fieldPath: metadata.namespace
|
fieldPath: metadata.namespace
|
||||||
- name: BASE_HREF
|
- name: BASE_HREF
|
||||||
value: /
|
value: /
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.ui.resources | nindent 12 }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -38,3 +38,5 @@ spec:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
fieldPath: metadata.namespace
|
fieldPath: metadata.namespace
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.controller.resources | nindent 12 }}
|
||||||
|
|
|
@ -56,6 +56,7 @@ controller:
|
||||||
# Source ranges to allow access to service from. Only applies to
|
# Source ranges to allow access to service from. Only applies to
|
||||||
# service type `LoadBalancer`
|
# service type `LoadBalancer`
|
||||||
loadBalancerSourceRanges: []
|
loadBalancerSourceRanges: []
|
||||||
|
resources: {}
|
||||||
|
|
||||||
executor:
|
executor:
|
||||||
image:
|
image:
|
||||||
|
@ -83,6 +84,7 @@ ui:
|
||||||
# Source ranges to allow access to service from. Only applies to
|
# Source ranges to allow access to service from. Only applies to
|
||||||
# service type `LoadBalancer`
|
# service type `LoadBalancer`
|
||||||
loadBalancerSourceRanges: []
|
loadBalancerSourceRanges: []
|
||||||
|
resources: {}
|
||||||
|
|
||||||
## Ingress configuration.
|
## Ingress configuration.
|
||||||
## ref: https://kubernetes.io/docs/user-guide/ingress/
|
## ref: https://kubernetes.io/docs/user-guide/ingress/
|
||||||
|
|
Loading…
Reference in New Issue