feat(argo-workflows): Add ability to use memoization (#1924)
This commit is contained in:
parent
2563d1e6f9
commit
2d193be5c0
4 changed files with 9 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.4.5
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.22.14
|
version: 0.22.15
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -14,4 +14,4 @@ maintainers:
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Add install guide on README.
|
description: Ability to use memoization feature.
|
||||||
|
|
|
@ -147,6 +147,7 @@ Fields to note:
|
||||||
| controller.priorityClassName | string | `""` | Leverage a PriorityClass to ensure your pods survive resource shortages. |
|
| controller.priorityClassName | string | `""` | Leverage a PriorityClass to ensure your pods survive resource shortages. |
|
||||||
| controller.rbac.create | bool | `true` | Adds Role and RoleBinding for the controller. |
|
| controller.rbac.create | bool | `true` | Adds Role and RoleBinding for the controller. |
|
||||||
| controller.rbac.secretWhitelist | list | `[]` | Allows controller to get, list, and watch certain k8s secrets |
|
| controller.rbac.secretWhitelist | list | `[]` | Allows controller to get, list, and watch certain k8s secrets |
|
||||||
|
| controller.rbac.writeConfigMaps | bool | `false` | Allows controller to create and update ConfigMaps. Enables memoization feature |
|
||||||
| controller.replicas | int | `1` | The number of controller pods to run |
|
| controller.replicas | int | `1` | The number of controller pods to run |
|
||||||
| controller.resourceRateLimit | object | `{}` | Globally limits the rate at which pods are created. This is intended to mitigate flooding of the Kubernetes API server by workflows with a large amount of parallel nodes. |
|
| controller.resourceRateLimit | object | `{}` | Globally limits the rate at which pods are created. This is intended to mitigate flooding of the Kubernetes API server by workflows with a large amount of parallel nodes. |
|
||||||
| controller.resources | object | `{}` | Resource limits and requests for the controller |
|
| controller.resources | object | `{}` | Resource limits and requests for the controller |
|
||||||
|
|
|
@ -36,6 +36,10 @@ rules:
|
||||||
- get
|
- get
|
||||||
- watch
|
- watch
|
||||||
- list
|
- list
|
||||||
|
{{- if .Values.controller.rbac.writeConfigMaps }}
|
||||||
|
- create
|
||||||
|
- update
|
||||||
|
{{- end}}
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ""
|
- ""
|
||||||
resources:
|
resources:
|
||||||
|
|
|
@ -74,6 +74,8 @@ controller:
|
||||||
create: true
|
create: true
|
||||||
# -- Allows controller to get, list, and watch certain k8s secrets
|
# -- Allows controller to get, list, and watch certain k8s secrets
|
||||||
secretWhitelist: []
|
secretWhitelist: []
|
||||||
|
# -- Allows controller to create and update ConfigMaps. Enables memoization feature
|
||||||
|
writeConfigMaps: false
|
||||||
|
|
||||||
# -- Limits the maximum number of incomplete workflows in a namespace
|
# -- Limits the maximum number of incomplete workflows in a namespace
|
||||||
namespaceParallelism:
|
namespaceParallelism:
|
||||||
|
|
Loading…
Reference in a new issue