forked from argoproj/argo-helm
fix(argo-workflows): Setting default `ContainerRuntimeExecutor` to emissary (#1243)
* set default ContainerRuntimeExecutor to emissary bumping argo-workflows helm chart to 0.14.1 Signed-off-by: Bikram <bikram@reserved.ai> * Update docs Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>main argo-workflows-0.14.3
parent
b849ee9775
commit
bfad95fe77
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: argo-workflows
|
||||
description: A Helm chart for Argo Workflows
|
||||
type: application
|
||||
version: 0.14.2
|
||||
version: 0.14.3
|
||||
appVersion: v3.3.2
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
|
@ -15,4 +15,4 @@ maintainers:
|
|||
- name: benjaminws
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Fixed]: Fix typos and add missing words in README"
|
||||
- "[Fixed]: Setting default ContainerRuntimeExecutor to emissary"
|
||||
|
|
|
@ -65,7 +65,7 @@ Fields to note:
|
|||
|-----|------|---------|-------------|
|
||||
| controller.affinity | object | `{}` | Assign custom [affinity] rules |
|
||||
| controller.clusterWorkflowTemplates.enabled | bool | `true` | Create a ClusterRole and CRB for the controller to access ClusterWorkflowTemplates. |
|
||||
| controller.containerRuntimeExecutor | string | `"docker"` | Specifies the container runtime interface to use (one of: `docker`, `kubelet`, `k8sapi`, `pns`, `emissary`) |
|
||||
| controller.containerRuntimeExecutor | string | `"emissary"` | Specifies the container runtime interface to use (one of: `docker`, `kubelet`, `k8sapi`, `pns`, `emissary`) |
|
||||
| controller.containerRuntimeExecutors | list | `[]` | Specifies the executor to use. This has precedence over `controller.containerRuntimeExecutor`. |
|
||||
| controller.extraArgs | list | `[]` | Extra arguments to be added to the controller |
|
||||
| controller.extraContainers | list | `[]` | Extra containers to be added to the controller deployment |
|
||||
|
|
|
@ -170,7 +170,7 @@ controller:
|
|||
|
||||
# -- Specifies the container runtime interface to use (one of: `docker`, `kubelet`, `k8sapi`, `pns`, `emissary`)
|
||||
## Ref: https://argoproj.github.io/argo-workflows/workflow-executors/
|
||||
containerRuntimeExecutor: docker
|
||||
containerRuntimeExecutor: emissary
|
||||
# -- Specifies the executor to use. This has precedence over `controller.containerRuntimeExecutor`.
|
||||
containerRuntimeExecutors: []
|
||||
# - name: emissary
|
||||
|
|
Loading…
Reference in New Issue