From 35f9ea8149385b4c18ccef139a336f032afe5b3d Mon Sep 17 00:00:00 2001 From: Aikawa Date: Thu, 2 Jun 2022 02:56:20 +0900 Subject: [PATCH] fix(argo-workflows): Remove unsupported value (#1302) * fix(argo-workflows): Add comment about removed flag Signed-off-by: yu-croco * fix(argo-workflows): Remove unsupported value Signed-off-by: yu-croco --- charts/argo-workflows/Chart.yaml | 4 ++-- charts/argo-workflows/README.md | 1 - .../templates/controller/workflow-controller-deployment.yaml | 4 ---- charts/argo-workflows/values.yaml | 2 -- 4 files changed, 2 insertions(+), 9 deletions(-) diff --git a/charts/argo-workflows/Chart.yaml b/charts/argo-workflows/Chart.yaml index d2be76d9..7c690002 100644 --- a/charts/argo-workflows/Chart.yaml +++ b/charts/argo-workflows/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: argo-workflows description: A Helm chart for Argo Workflows type: application -version: 0.16.1 +version: 0.16.2 appVersion: v3.3.6 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: | - - "[Changed]: Update to app version v3.3.6" + - "[Fixed]: Remove unsupported value" diff --git a/charts/argo-workflows/README.md b/charts/argo-workflows/README.md index 0592f827..233af32e 100644 --- a/charts/argo-workflows/README.md +++ b/charts/argo-workflows/README.md @@ -99,7 +99,6 @@ Fields to note: | controller.podAnnotations | object | `{}` | podAnnotations is an optional map of annotations to be applied to the controller Pods | | controller.podLabels | object | `{}` | Optional labels to add to the controller pods | | controller.podSecurityContext | object | `{}` | SecurityContext to set on the controller pods | -| controller.podWorkers | string | `nil` | Number of pod workers | | 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.replicas | int | `1` | The number of controller pods to run | diff --git a/charts/argo-workflows/templates/controller/workflow-controller-deployment.yaml b/charts/argo-workflows/templates/controller/workflow-controller-deployment.yaml index 153efeef..9f53a2e4 100644 --- a/charts/argo-workflows/templates/controller/workflow-controller-deployment.yaml +++ b/charts/argo-workflows/templates/controller/workflow-controller-deployment.yaml @@ -53,10 +53,6 @@ spec: - "--workflow-workers" - {{ . | quote }} {{- end }} - {{- with .Values.controller.podWorkers }} - - "--pod-workers" - - {{ . | quote }} - {{- end }} {{- with .Values.controller.extraArgs }} {{- toYaml . | nindent 10 }} {{- end }} diff --git a/charts/argo-workflows/values.yaml b/charts/argo-workflows/values.yaml index e94ba575..5131be6b 100644 --- a/charts/argo-workflows/values.yaml +++ b/charts/argo-workflows/values.yaml @@ -126,8 +126,6 @@ controller: # -- Number of workflow workers workflowWorkers: # 32 - # -- Number of pod workers - podWorkers: # 32 # -- Restricts the Workflows that the controller will process. # Only valid for 2.9+ workflowRestrictions: {}