-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asynchronous deployment of helm releases #63
Comments
Related: helm/helm#5891 |
Are you still working on this @turkenh, or would it be available for someone else to take on? |
@jbw976 not really. Just unassigned from myself and available for anyone interested. |
For posterity, I believe this could be implemented by following a similar approach used in Terrajet: https://github.com/crossplane/terrajet/blob/6142eefbcf5b4e6490a4a39f8ceffa8810911d5f/pkg/terraform/workspace.go#L106 We might even consider to have a cli execution library (sync/async) as a reusable piece of code, e.g. in crossplane-runtime. Not sure if this worths the amount of work required though. |
What problem are you facing?
Currently, install and upgrade calls using helm go client is blocking which means, reconcile loop is being blocked until deployment is done. Since we don't set
wait
(related), this is fine if chart does not contain hooks. However, with hooks we encounter problems like this.How could Crossplane help solve your problem?
We need to make this action asynchronous somehow.
The text was updated successfully, but these errors were encountered: