From fc3567ddda6715b7ab9d0bde5f61d826f89cb05b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Acosta=20Ramas?= Date: Sun, 27 Dec 2020 16:24:38 -0800 Subject: [PATCH] Adding documentation for PR #6819 (#1623) Adding documentation for this feature: https://github.com/helm/helm/pull/6819 not being aware of this, make turn helm2 to 3 migrations very complicated. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 9fac06f1..acbbb7cf 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,14 @@ releases: # See https://github.com/roboll/helmfile/issues/642 # (default "", which means the standard kubeconfig, either ~/kubeconfig or the file pointed by $KUBECONFIG environment variable) kubeContext: kube-context + # passes --disable-validation to helm 3 diff plugin, this requires diff plugin >= 3.1.2 + # It may be helpful to deploy charts with helm api v1 CRDS + # https://github.com/roboll/helmfile/pull/1373 + disableValidation: false + # passes --disable-openapi-validation to helm 3 diff plugin, this requires diff plugin >= 3.1.2 + # It may be helpful to deploy charts with helm api v1 CRDS + # https://github.com/roboll/helmfile/pull/1373 + disableOpenApiValidation: false # limit the maximum number of revisions saved per release. Use 0 for no limit (default 10) historyMax: 10 # When set to `true`, skips running `helm dep up` and `helm dep build` on this release's chart.