Does pulumi support helm release with oci registri...
# general
a
Does pulumi support helm release with oci registries? I’m runnnning python
Copy code
Package            Version
------------------ ----------
Arpeggio           2.0.2
attrs              23.2.0
boto3              1.34.24
botocore           1.34.24
certifi            2023.11.17
charset-normalizer 3.3.2
colorama           0.4.6
coverage           5.5
dill               0.3.7
grpcio             1.60.1
idna               3.6
iniconfig          2.0.0
ipaddress          1.0.23
Jinja2             3.1.4
jmespath           1.0.1
MarkupSafe         2.1.5
packaging          23.2
parver             0.5
pip                23.3.2
pluggy             1.3.0
protobuf           4.25.2
pulumi             3.120.0
pulumi_aws         6.41.0
pulumi_aws_tags    0.9.0
pulumi_eks         2.7.6
pulumi_kubernetes  4.13.1
pytest             7.4.4
python-dateutil    2.8.2
PyYAML             6.0.1
requests           2.31.0
s3transfer         0.10.0
semver             2.13.0
setuptools         68.2.2
six                1.16.0
urllib3            2.0.7
and pulumi version
v3.121.0
I’m trying to pull and install from a private oci registry and I’m getting
Copy code
error: kubernetes:<http://helm.sh/v3:Release|helm.sh/v3:Release> resource 'falco-platform1': ... has a problem: looks like "oci://<private registry>" is not a valid chart repository or cannot be reached: object required; check the chart name and repository configuration.
I know the oci registry is ‘working’ as we use it every day. I’m just trying to access it with pulumi now.
f
You may be running into this issue: • https://github.com/pulumi/pulumi-kubernetes/issues/1914 I'm assuming you are trying to pass in credentials in your pulumi code? If so this may not work with OCI registries. Refer to this comment in the issue I linked for potential workarounds.
a
Unfortuantely, I am not using credentials in tthe reposiotryOpts. I just pass in the repo url for the
repo
argument.