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