From d5ad0371736673429dcbef8a88a3dc2f0ca54c8c Mon Sep 17 00:00:00 2001 From: Diego Pinheiro Date: Wed, 9 Mar 2022 00:18:46 -0300 Subject: [PATCH] Fix: Helm Chart values.yaml typo (#3403) * fix - typo Signed-off-by: GitHub * fix - typo helm values Signed-off-by: GitHub --- charts/vela-core/README.md | 2 +- charts/vela-core/templates/kubevela-controller.yaml | 2 +- charts/vela-core/values.yaml | 4 ++-- charts/vela-minimal/README.md | 2 +- charts/vela-minimal/templates/kubevela-controller.yaml | 2 +- charts/vela-minimal/values.yaml | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/vela-core/README.md b/charts/vela-core/README.md index 5a6199bc2..11c56d65b 100644 --- a/charts/vela-core/README.md +++ b/charts/vela-core/README.md @@ -122,6 +122,6 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-core --wai | `logFilePath` | If non-empty, write log files in this path | `""` | | `logFileMaxSize` | Defines the maximum size a log file can grow to. Unit is megabytes. If the value is 0, the maximum file size is unlimited. | `1024` | | `kubeClient.qps` | The qps for reconcile clients, default is 50 | `50` | -| `kubeClient.brust` | The burst for reconcile clients, default is 100 | `100` | +| `kubeClient.burst` | The burst for reconcile clients, default is 100 | `100` | diff --git a/charts/vela-core/templates/kubevela-controller.yaml b/charts/vela-core/templates/kubevela-controller.yaml index e18e01685..c19fd389b 100644 --- a/charts/vela-core/templates/kubevela-controller.yaml +++ b/charts/vela-core/templates/kubevela-controller.yaml @@ -135,7 +135,7 @@ spec: - "--application-re-sync-period={{ .Values.controllerArgs.reSyncPeriod }}" - "--concurrent-reconciles={{ .Values.concurrentReconciles }}" - "--kube-api-qps={{ .Values.kubeClient.qps }}" - - "--kube-api-burst={{ .Values.kubeClient.brust }}" + - "--kube-api-burst={{ .Values.kubeClient.burst }}" - "--max-workflow-wait-backoff-time={{ .Values.workflow.backoff.maxTime.waitState }}" - "--max-workflow-failed-backoff-time={{ .Values.workflow.backoff.maxTime.failedState }}" - "--max-workflow-step-error-retry-times={{ .Values.workflow.step.errorRetryTimes }}" diff --git a/charts/vela-core/values.yaml b/charts/vela-core/values.yaml index 6c56b4683..658ff0bee 100644 --- a/charts/vela-core/values.yaml +++ b/charts/vela-core/values.yaml @@ -206,7 +206,7 @@ admissionWebhooks: revisionHistoryLimit: 3 ## @param kubeClient.qps The qps for reconcile clients, default is 50 -## @param kubeClient.brust The burst for reconcile clients, default is 100 +## @param kubeClient.burst The burst for reconcile clients, default is 100 kubeClient: qps: 50 - brust: 100 + burst: 100 diff --git a/charts/vela-minimal/README.md b/charts/vela-minimal/README.md index ba660194c..4f5902995 100644 --- a/charts/vela-minimal/README.md +++ b/charts/vela-minimal/README.md @@ -141,6 +141,6 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-minimal -- | `logFilePath` | If non-empty, write log files in this path | `""` | | `logFileMaxSize` | Defines the maximum size a log file can grow to. Unit is megabytes. If the value is 0, the maximum file size is unlimited. | `1024` | | `kubeClient.qps` | The qps for reconcile clients, default is 50 | `50` | -| `kubeClient.brust` | The burst for reconcile clients, default is 100 | `100` | +| `kubeClient.burst` | The burst for reconcile clients, default is 100 | `100` | diff --git a/charts/vela-minimal/templates/kubevela-controller.yaml b/charts/vela-minimal/templates/kubevela-controller.yaml index 5970c6cee..5a3897e95 100644 --- a/charts/vela-minimal/templates/kubevela-controller.yaml +++ b/charts/vela-minimal/templates/kubevela-controller.yaml @@ -138,7 +138,7 @@ spec: {{ end }} - "--concurrent-reconciles={{ .Values.concurrentReconciles }}" - "--kube-api-qps={{ .Values.kubeClient.qps }}" - - "--kube-api-burst={{ .Values.kubeClient.brust }}" + - "--kube-api-burst={{ .Values.kubeClient.burst }}" - "--max-workflow-wait-backoff-time={{ .Values.workflow.backoff.maxTime.waitState }}" - "--max-workflow-failed-backoff-time={{ .Values.workflow.backoff.maxTime.failedState }}" - "--max-workflow-step-error-retry-times={{ .Values.workflow.step.errorRetryTimes }}" diff --git a/charts/vela-minimal/values.yaml b/charts/vela-minimal/values.yaml index 5c8a714e7..c2d4fda4c 100644 --- a/charts/vela-minimal/values.yaml +++ b/charts/vela-minimal/values.yaml @@ -211,7 +211,7 @@ admissionWebhooks: revisionHistoryLimit: 3 ## @param kubeClient.qps The qps for reconcile clients, default is 50 -## @param kubeClient.brust The burst for reconcile clients, default is 100 +## @param kubeClient.burst The burst for reconcile clients, default is 100 kubeClient: qps: 50 - brust: 100 + burst: 100