https://pulumi.com logo
#kubernetes
Title
# kubernetes
f

fast-easter-23401

02/24/2022, 6:10 PM
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

quiet-wolf-18467

02/25/2022, 11:51 AM
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
5 Views