From 1a474a9b7f28a575393e976d4876e48b864e5ad0 Mon Sep 17 00:00:00 2001 From: varshaprasad96 Date: Sun, 19 Jul 2020 20:48:10 -0700 Subject: [PATCH] update relevant helm doc --- .../building-operators/helm/reference/advanced_features.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/content/en/docs/building-operators/helm/reference/advanced_features.md b/website/content/en/docs/building-operators/helm/reference/advanced_features.md index 05d263bfbb..c7bca88a64 100644 --- a/website/content/en/docs/building-operators/helm/reference/advanced_features.md +++ b/website/content/en/docs/building-operators/helm/reference/advanced_features.md @@ -101,6 +101,11 @@ $ cat config/manager/manager.yaml ... ``` +While running locally, this flag can also be added to the helm binary. For example, running `helm-operator` binary with the above mentioned flag would give us a similar result: +``` +helm-operator --max-concurrent-reconciles=10 +``` + **NOTE**: If you're using the default scaffolding, it is necessary to also apply this change to the `config/default/manager_auth_proxy_patch.yaml` file. This file is a `kustomize` patch to the operator deployment that configures [kube-rbac-proxy][kube-rbac-proxy] to require authorization for accessing your operator metrics. When `kustomize` applies this patch, it overrides the args defined in `config/manager/manager.yaml` ## Use `helm upgrade --force` for deployment