Is using oci-based registries not yet working for ...
# kubernetes
p
Is using oci-based registries not yet working for `k8s.helm.v3.Release`s? I found a couple of issues (https://archive.pulumi.com/t/4620325/is-installing-a-helm-chart-from-an-aws-ecr-repo-supported-in, https://github.com/pulumi/pulumi-kubernetes/issues/1477), but it seems oci-based registries are not fully supported yet? There is this (https://github.com/pulumi/pulumi-kubernetes/issues/1477#issuecomment-784994737) workaround to download and deploy the chart locally. EDIT: excuse my not searching for "oci" in this channel beforehand. found the last discussion about OCI-based registries. IMO the docs should explain how to use oci registries, since this differs from the usual approach with http(s)
s
try putting the oci URL in the
chart
param (you're probably putting it in
repositoryOpts
right now?), e.g.:
Copy code
new helm.v3.Release('contour', {
      chart: '<oci://registry-1.docker.io/bitnamicharts/contour>',