You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to docs, I should be able to specify a ComponentResourceOptions to the Helm.V3.Release resource. I am unable to do so, the accepted type is CustomResourceOptions. I am unable to find any documentation or examples on how to provide an explicit provider to this resource, and it feels like the docs are wrong
Example
var chart = new Pulumi.Kubernetes.Helm.V3.Release(chartResourceName, new ReleaseArgs
{
Name = "nginx",
Namespace = "default",
Chart = "nginx",
RepositoryOpts = new RepositoryOptsArgs
{
Repo = "oci://registry-1.docker.io/bitnamicharts"
}
}, new CustomResourceOptions());
Output of pulumi about
I'm not comfortable sharing all that info, but here are the important bits I hope:
CLI
Version 3.136.1
Go Version go1.23.2
Go Compiler gc
Plugins
KIND NAME VERSION
resource azure 6.0.0
resource azure-native 2.66.0
resource azuread 5.53.5
language dotnet unknown
resource kubernetes 4.18.1
Dependencies:
NAME VERSION
Pulumi 3.67.1
Pulumi.Azure 6.0.0
Pulumi.Azuread 5.53.5
Pulumi.AzureNative 2.66.0
Pulumi.Kubernetes 4.18.1
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered:
You're correct that in C#, the parameter is CustomResourceOptions instead of ComponentResourceOptions. I'll investigate further to understand why this behavior differs in C# compared to other languages.
What happened?
According to docs, I should be able to specify a
ComponentResourceOptions
to theHelm.V3.Release
resource. I am unable to do so, the accepted type isCustomResourceOptions
. I am unable to find any documentation or examples on how to provide an explicitprovider
to this resource, and it feels like the docs are wrongExample
Output of
pulumi about
I'm not comfortable sharing all that info, but here are the important bits I hope:
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered: