mirror of
https://github.com/bitnami/charts.git
synced 2026-02-20 20:17:21 +08:00
[bitnami/argo-workflows] fix: 🐛 Use proper type for sidecars and init containers (#10753)
* [bitnami/argo-workflows] fix: 🐛 Use proper type for sidecars and init containers Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
committed by
GitHub
parent
967b78687e
commit
73d85b4e03
@@ -35,4 +35,4 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-argo-workflow-controller
|
||||
- https://github.com/bitnami/bitnami-docker-argo-workflow-exec
|
||||
- https://argoproj.github.io/workflows/
|
||||
version: 2.3.1
|
||||
version: 2.3.2
|
||||
|
||||
@@ -82,7 +82,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | --------------------------- |
|
||||
| `server.image.registry` | server image registry | `docker.io` |
|
||||
| `server.image.repository` | server image repository | `bitnami/argo-workflow-cli` |
|
||||
| `server.image.tag` | server image tag (immutable tags are recommended) | `3.3.6-scratch-r0` |
|
||||
| `server.image.tag` | server image tag (immutable tags are recommended) | `3.3.6-scratch-r2` |
|
||||
| `server.image.pullPolicy` | server image pull policy | `Always` |
|
||||
| `server.image.pullSecrets` | server image pull secrets | `[]` |
|
||||
| `server.enabled` | Enable server deployment | `true` |
|
||||
@@ -166,8 +166,8 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `server.extraEnvVarsSecret` | Name of existing Secret containing extra env vars for server nodes | `""` |
|
||||
| `server.extraVolumes` | Optionally specify extra list of additional volumes for the server pod(s) | `[]` |
|
||||
| `server.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the server container(s) | `[]` |
|
||||
| `server.sidecars` | Add additional sidecar containers to the server pod(s) | `{}` |
|
||||
| `server.initContainers` | Add additional init containers to the server pod(s) | `{}` |
|
||||
| `server.sidecars` | Add additional sidecar containers to the server pod(s) | `[]` |
|
||||
| `server.initContainers` | Add additional init containers to the server pod(s) | `[]` |
|
||||
| `server.service.type` | server service type | `ClusterIP` |
|
||||
| `server.service.ports.http` | server service HTTP port | `80` |
|
||||
| `server.service.nodePorts.http` | Node port for HTTP | `""` |
|
||||
@@ -185,7 +185,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- |
|
||||
| `controller.image.registry` | controller image registry | `docker.io` |
|
||||
| `controller.image.repository` | controller image repository | `bitnami/argo-workflow-controller` |
|
||||
| `controller.image.tag` | controller image tag (immutable tags are recommended) | `3.3.5-scratch-r0` |
|
||||
| `controller.image.tag` | controller image tag (immutable tags are recommended) | `3.3.6-scratch-r0` |
|
||||
| `controller.image.pullPolicy` | controller image pull policy | `IfNotPresent` |
|
||||
| `controller.image.pullSecrets` | controller image pull secrets | `[]` |
|
||||
| `controller.replicaCount` | Number of controller replicas to deploy | `1` |
|
||||
@@ -270,8 +270,8 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `controller.extraEnvVarsSecret` | Name of existing Secret containing extra env vars for controller nodes | `""` |
|
||||
| `controller.extraVolumes` | Optionally specify extra list of additional volumes for the controller pod(s) | `[]` |
|
||||
| `controller.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the controller container(s) | `[]` |
|
||||
| `controller.sidecars` | Add additional sidecar containers to the controller pod(s) | `{}` |
|
||||
| `controller.initContainers` | Add additional init containers to the controller pod(s) | `{}` |
|
||||
| `controller.sidecars` | Add additional sidecar containers to the controller pod(s) | `[]` |
|
||||
| `controller.initContainers` | Add additional init containers to the controller pod(s) | `[]` |
|
||||
| `controller.service.type` | controller service type | `ClusterIP` |
|
||||
| `controller.service.ports.metrics` | Metrics port for the controller | `8080` |
|
||||
| `controller.service.ports.telemetry` | Telemetry port for the controller | `8081` |
|
||||
@@ -291,7 +291,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ---------------------------------------------------------- | ------------------------------------------------------------- | ---------------------------- |
|
||||
| `executor.image.registry` | executor image registry | `docker.io` |
|
||||
| `executor.image.repository` | executor image repository | `bitnami/argo-workflow-exec` |
|
||||
| `executor.image.tag` | executor image tag (immutable tags are recommended) | `3.3.5-debian-10-r20` |
|
||||
| `executor.image.tag` | executor image tag (immutable tags are recommended) | `3.3.6-debian-11-r2` |
|
||||
| `executor.image.pullPolicy` | executor image pull policy | `Always` |
|
||||
| `executor.image.pullSecrets` | executor image pull secrets | `[]` |
|
||||
| `executor.resources.limits` | The resources limits for the init container | `{}` |
|
||||
|
||||
@@ -397,7 +397,7 @@ server:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
## @param server.initContainers Add additional init containers to the server pod(s)
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
|
||||
## e.g:
|
||||
@@ -407,7 +407,7 @@ server:
|
||||
## imagePullPolicy: Always
|
||||
## command: ['sh', '-c', 'echo "hello world"']
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
|
||||
## Server service parameters
|
||||
##
|
||||
@@ -740,6 +740,7 @@ controller:
|
||||
## Default Workflow Values
|
||||
## Ref: https://argoproj.github.io/argo-workflows/default-workflow-specs/#setting-default-workflow-values
|
||||
## @param controller.workflowDefaults Default Workflow Values
|
||||
##
|
||||
workflowDefaults: {}
|
||||
## Logging level for the controller
|
||||
## @param controller.logging.level Level for the controller logging
|
||||
@@ -883,7 +884,7 @@ controller:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
## @param controller.initContainers Add additional init containers to the controller pod(s)
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
|
||||
## e.g:
|
||||
@@ -893,7 +894,7 @@ controller:
|
||||
## imagePullPolicy: Always
|
||||
## command: ['sh', '-c', 'echo "hello world"']
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
|
||||
## Controller service parameters
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user