fix(argo-workflows): change default type of .mainContainer.env
and .executor.env
from object to array (#1487)
Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
parent
9b3a65e239
commit
bf2420767b
3 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.4.0
|
||||||
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.19.2
|
version: 0.19.3
|
||||||
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:
|
||||||
|
@ -13,4 +13,4 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Set only used values on SSO configuration"
|
- "[Fixed]: Change default type of `.mainContainer.env` and `.executor.env` from object to array"
|
||||||
|
|
|
@ -139,7 +139,7 @@ Fields to note:
|
||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| mainContainer.env | object | `{}` | Adds environment variables for the Workflow main container |
|
| mainContainer.env | list | `[]` | Adds environment variables for the Workflow main container |
|
||||||
| mainContainer.imagePullPolicy | string | `"Always"` | imagePullPolicy to apply to Workflow main container |
|
| mainContainer.imagePullPolicy | string | `"Always"` | imagePullPolicy to apply to Workflow main container |
|
||||||
| mainContainer.resources | object | `{}` | Resource limits and requests for the Workflow main container |
|
| mainContainer.resources | object | `{}` | Resource limits and requests for the Workflow main container |
|
||||||
| mainContainer.securityContext | object | `{}` | sets security context for the Workflow main container |
|
| mainContainer.securityContext | object | `{}` | sets security context for the Workflow main container |
|
||||||
|
@ -148,7 +148,7 @@ Fields to note:
|
||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| executor.env | object | `{}` | Adds environment variables for the executor. |
|
| executor.env | list | `[]` | Adds environment variables for the executor. |
|
||||||
| executor.image.registry | string | `"quay.io"` | Registry to use for the Workflow Executors |
|
| executor.image.registry | string | `"quay.io"` | Registry to use for the Workflow Executors |
|
||||||
| executor.image.repository | string | `"argoproj/argoexec"` | Repository to use for the Workflow Executors |
|
| executor.image.repository | string | `"argoproj/argoexec"` | Repository to use for the Workflow Executors |
|
||||||
| executor.image.tag | string | `""` | Image tag for the workflow executor. Defaults to `.Values.images.tag`. |
|
| executor.image.tag | string | `""` | Image tag for the workflow executor. Defaults to `.Values.images.tag`. |
|
||||||
|
|
|
@ -283,7 +283,7 @@ mainContainer:
|
||||||
# -- Resource limits and requests for the Workflow main container
|
# -- Resource limits and requests for the Workflow main container
|
||||||
resources: {}
|
resources: {}
|
||||||
# -- Adds environment variables for the Workflow main container
|
# -- Adds environment variables for the Workflow main container
|
||||||
env: {}
|
env: []
|
||||||
# -- sets security context for the Workflow main container
|
# -- sets security context for the Workflow main container
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ executor:
|
||||||
# -- Resource limits and requests for the Workflow Executors
|
# -- Resource limits and requests for the Workflow Executors
|
||||||
resources: {}
|
resources: {}
|
||||||
# -- Adds environment variables for the executor.
|
# -- Adds environment variables for the executor.
|
||||||
env: {}
|
env: []
|
||||||
# -- sets security context for the executor container
|
# -- sets security context for the executor container
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue