Fraser Waters
Fraser Waters
Raised https://github.com/pulumi/pulumi/pull/10354 to at least fix the panic, it won't result in backwards slices anymore. Having said that I think there's probably some bad data getting into the system that...
> (where I'm assuming the issue is occuring) Yup spilling binary data to the logs is pretty suspect. I think the bit actually causing the panic probably didn't get printed...
Reopened to track where this badly formatted text is coming from.
Hey @samueldudley-xrd just to let you know that [v3.38](https://github.com/pulumi/pulumi/releases/tag/v3.38.0) was released yesterday. If you update and give that a run you should be able to get some more logs (and...
> Taking a look at the event log I used the following regex [(%\}>)(((?!)](https://regex101.com/r/5oM74X/1) and identified the following single line (line # 1085861): Ah that'll do it! Thank's looks like...
Updating the code for the current sdk: ``` package main import ( aws_eks "github.com/pulumi/pulumi-aws/sdk/v5/go/aws/eks" "github.com/pulumi/pulumi-aws/sdk/v5/go/aws/iam" "github.com/pulumi/pulumi-eks/sdk/go/eks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { args := &eks.ClusterArgs{} args.SkipDefaultNodeGroup =...
So this is due to the `pulumi.Parent(cluster))` part, remove that and it runs to completion fine.
Also can you run `pulumi plugin install resource aws 4.38.1`?
> send on closed channel That looks like this panic'd _because_ you were cancelling. So echoing Mikhail that a log of this crashing without you trying to cancel would be...
> Hi, thank you for being patient. Here it keeps retrying. You'll note that there's a retry counter there "Will retry in 80ms [1/5]" it will only retry 5 times...