Hello guys, I’m using the `kuberenetes.helm.v3.Rel...
# kubernetes
f
Hello guys, I’m using the
kuberenetes.helm.v3.Release
component, and wish to know if there’s a way to instruct the pulumi API to use a specific revision number. Or perhaps is there a way to perform a helm rollback instead?
@future-nail-59564 ☝️
q
You can specify the version of the chart with
version: ""
in the arguments.
Copy code
helmRelease, err := helm.NewRelease(ctx, "ssp-addon-argocd", &helm.ReleaseArgs{
			Chart:     pulumi.String("argo-cd"),
			Version:   pulumi.String(args.Version)
Here's an example