Skip to content

v3.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Oct 21:36
· 555 commits to master since this release
eed4677

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:

  1. As arguments to a first-class Provider

    new k8s.Provider("test", { helmReleaseSettings: { driver: "secret" } });
  2. Stack configuration for the default Provider

    pulumi config set --path kubernetes:helmReleaseSettings.driver "secret"
    
  3. As environment variables

    export PULUMI_K8S_HELM_DRIVER="secret"
    
  • [sdk/dotnet] Fix creation of CustomResources (#1741)
  • Always override namespace for helm release operations (#1747)
  • Add k8s client tuning settings to Provider (#1748)
  • Nest helm.Release Provider settings (#1751)
  • Change await logic client to use target apiVersion on updates (#1758)