Hi hi! is this possible to authenticate to OCI reg...
# kubernetes
l
Hi hi! is this possible to authenticate to OCI registry from the
<http://kubernetes.helm.sh/v4.Chart|kubernetes.helm.sh/v4.Chart>
instead of run helm registry login before running pulumi, according to this blog post https://www.pulumi.com/blog/kubernetes-chart-v4/#oci-registry-support? for example for google registry, default login token ttl is 3600. [3:58 PM]
Copy code
const oomkill = new k8s.helm.v4.Chart("oomkill", {
      chart: "<oci://us-central1-docker.pkg.dev/myprivate-registry/oomkill-exporter>",
      version: "2.1.2",
      repositoryOpts: {
        repo: "<https://us-central1-docker.pkg.dev>",
        password: "some-jwt-token",
        username: "oauth2accesstoken",
      }
    },{
      ...opts,
      parent: this,
    })
h
looks like you already gave https://github.com/pulumi/pulumi-kubernetes/issues/2911 a 👍 — thanks for that, it helps us prioritize issues.
1