feat(argo-workflows): Add global tag (#1377)

* feat(argo-workflows): Moved `.Values.images` values to global
Signed-off-by: yu-croco <yuki.kita22@gmail.com>

* Revert "feat(argo-workflows): Moved `.Values.images` values to global"
This reverts commit 67b4294675440ba2dfef5c8db8473d416144cc35.
Signed-off-by: yu-croco <yuki.kita22@gmail.com>

* feat(argo-workflows): Add global tag
Signed-off-by: yu-croco <yuki.kita22@gmail.com>
This commit is contained in:
Aikawa 2022-07-27 09:50:42 +09:00 committed by GitHub
parent 8f0914dc4e
commit 334d8ae728
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 27 additions and 17 deletions

View file

@ -1,4 +1,6 @@
images:
# -- Common tag for Argo Workflows images. Defaults to `.Chart.AppVersion`.
tag: ""
# -- imagePullPolicy to apply to all containers
pullPolicy: Always
# -- Secrets with credentials to pull images from a private registry
@ -45,7 +47,7 @@ controller:
registry: quay.io
# -- Registry to use for the controller
repository: argoproj/workflow-controller
# -- Overrides the image tag whose default is the chart appVersion.
# -- Image tag for the workflow controller. Defaults to `.Values.images.tag`.
tag: ""
# -- parallelism dictates how many workflows can be running at the same time
parallelism:
@ -280,7 +282,7 @@ executor:
registry: quay.io
# -- Repository to use for the Workflow Executors
repository: argoproj/argoexec
# -- Overrides the image tag whose default is the chart appVersion.
# -- Image tag for the workflow executor. Defaults to `.Values.images.tag`.
tag: ""
# -- Resource limits and requests for the Workflow Executors
resources: {}
@ -302,7 +304,7 @@ server:
registry: quay.io
# -- Repository to use for the server
repository: argoproj/argocli
# -- Overrides the image tag whose default is the chart appVersion.
# -- Image tag for the Argo Workflows server. Defaults to `.Values.images.tag`.
tag: ""
# -- optional map of annotations to be applied to the ui Deployment
deploymentAnnotations: {}