-
Notifications
You must be signed in to change notification settings - Fork 116
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
kubectl 'exec' and 'cp' equivalent #237
Comments
I've been thinking a lot about this sort of thing too. I think it's super useful, but a key question for me is how this fits into the rest of Pulumi -- the rest of the SDK is highly declarative, and opening the door to imperative APIs that let you mutate existing resources is a huge leap, and one we should consider carefully before committing to. I'll be playing with it more over the next couple months, after which I expect to have stronger opinions. In the meantime, the official Kubernetes JavaScript client offers these things out of the box. It should be feasible to use this stuff with Pulumi, which should bridge the gap in the short term. |
Thanks @hausdorff ... In the meantime, I created this: kubernetes-client/javascript#124 |
Are there any update in this? |
Adding this to the Kubernetes provider has not been prioritized, but I believe all of the original use cases can be covered with the use of the pulumi-command provider, or by using the Automation API. |
We don't have any current plans to add this directly to pulumi-kubernetes. You can run the |
I would like to be able to exec some code on-demand. This is especially relevant for use-cases where I want to use pulumi to build kubernetes operators.
Proposed APIs
exec
execStream
cp
The text was updated successfully, but these errors were encountered: