Hi, how I can set the release-name when deploying ...
# kubernetes
b
Hi, how I can set the release-name when deploying a helm chart?
c
Copy code
// EFS CSI Installation
  const efsCSI = new k8s.helm.v3.Release(
    "efs-csi",
    {
      // NOTE: you must set the name, otherwise updates do not work.
      // Absent a name pulumi will generate a hash to make the name unique; as this happen before the
      // apply helm will not apply an update as the <http://meta.helm.sh/release-name|meta.helm.sh/release-name> annotation will not match
      name: "efs-csi",
... snip ...
From our codebase, where we install the efs-csi driver using helm.