Of found in github issues ```atlas_operator = Rele...
# kubernetes
g
Of found in github issues
Copy code
atlas_operator = Release(
    'atlas-operator-installation',
    ReleaseArgs(
        chart="<oci://ghcr.io/ariga/charts/atlas-operator>",
        version="0.5.0",
        name="atlas-operator",  # To Avoid random names
        namespace=atlas_namespace,
        values={},
    ),
)

In case it help someone
👀 1
d
There's also some talk about OCI in this blog post: https://www.pulumi.com/blog/kubernetes-chart-v4/
l
@damp-airline-38442 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? for example for google registry, default login token ttl is 3600.
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,
    })
d
Sorry for the delay, and no it isn't; you must use
docker login
or
helm registry login
. See https://github.com/pulumi/pulumi-kubernetes/issues/2911 for a possible enhancement.