Justin Van Patten
Justin Van Patten
I took an initial crack at `[BypassFlushHead]`: https://github.com/justinvp/CourtesyFlush/commit/5643ffc096eb84150041cb17003e9fab62e0469d The changes are on top of https://github.com/nikmd23/CourtesyFlush/pull/7; if/when that's merged, I'll open a new pull request for this change.
Hi @urit, I haven't been able to reproduce the issue. What is the output of running `pulumi about`? Also, if you run `pulumi up` with [verbose logging](https://www.pulumi.com/docs/troubleshooting/#verbose-logging) (e.g. `pulumi up...
Thanks for the logs. What is the output of running `pulumi about`?
Still haven't gotten to the bottom of this and haven't been able to reproduce the behavior locally. For some reason, when registering the request to create the Cluster resource, the...
> Concrete proposal is to change the type of `kubeconfig` (and the underlying impl that produces it) to be a string. This is however a breaking change. The alternative is...
For Python, it's possible to pass it like `cluster=cluster.core` because the `cluster` argument accepts either a `Mapping` or `CoreDataArgs` input type and output types are subclasses of `Dict`. But for...
The main problem is that the `ResourceOptions`' `provider` arg doesn't yet accept `Output[ProviderResource]`, which is tracked by https://github.com/pulumi/pulumi/issues/7012. In the meantime, this can be worked around by creating a new...
> 2\. The deployment hangs after the cluster is created. I thought I'd addressed this, but it looks like it's still happening. I've re-opened https://github.com/pulumi/pulumi-eks/issues/480 to track. Evan recently did...
FWIW, the reason this doesn't work correctly is because `name` isn't actually an output of `Cluster`. We'd need to add it as an output in the schema and propagate the...
> Does this have to be done manually in every package, or can/will this be automatically generated by package codegen? We were just discussing this in Slack yesterday, where I...