Breaking change note:
#1751 moved the Helm Release (beta) Provider options into a
complex type called helmReleaseSettings
. Following this change, you can set these options in the following ways:
-
As arguments to a first-class Provider
new k8s.Provider("test", { helmReleaseSettings: { driver: "secret" } });
-
Stack configuration for the default Provider
pulumi config set --path kubernetes:helmReleaseSettings.driver "secret"
-
As environment variables
export PULUMI_K8S_HELM_DRIVER="secret"