From bc1fefa9f33f14521c44e08768c9f9bac3681907 Mon Sep 17 00:00:00 2001 From: Ed Carrel Date: Fri, 27 Aug 2021 11:23:38 -0700 Subject: [PATCH] Fix HELM_DRIVER docs for sql option Option that works is `sql`, not `postgres`. Probably not a commonly used value, since no one has caught this until now. Signed-off-by: Ed Carrel --- cmd/helm/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/root.go b/cmd/helm/root.go index 285c80021..dbb31ad78 100644 --- a/cmd/helm/root.go +++ b/cmd/helm/root.go @@ -51,7 +51,7 @@ Environment variables: | $HELM_CONFIG_HOME | set an alternative location for storing Helm configuration. | | $HELM_DATA_HOME | set an alternative location for storing Helm data. | | $HELM_DEBUG | indicate whether or not Helm is running in Debug mode | -| $HELM_DRIVER | set the backend storage driver. Values are: configmap, secret, memory, postgres | +| $HELM_DRIVER | set the backend storage driver. Values are: configmap, secret, memory, sql. | | $HELM_DRIVER_SQL_CONNECTION_STRING | set the connection string the SQL storage driver should use. | | $HELM_MAX_HISTORY | set the maximum number of helm release history. | | $HELM_NAMESPACE | set the namespace used for the helm operations. |