This message was deleted.
s
This message was deleted.
b
Hmm I’ll give this a try myself, Go modules are notoriously…difficult
q
cool, im running on mac, with
pulumi version  v3.9.1
straigth from homebrew.
b
Which Go version?
q
go version go version go1.16.6 darwin/amd64
b
hey sorry for the delay here, I can't repro this! would you mind pasting your
go.mod
and
go.sum
into a github gist?
q
go.mod
Copy code
module test-project-go

go 1.14

require (
	<http://github.com/pulumi/pulumi-kubernetes/sdk/v3|github.com/pulumi/pulumi-kubernetes/sdk/v3> v3.5.2
	<http://github.com/pulumi/pulumi/sdk/v3|github.com/pulumi/pulumi/sdk/v3> v3.9.1
)
I have no go.sum in my project as it fails to load zap.
here is the gist of the complete project and how far i get https://gist.github.com/spydx/403c8cc0341d2ed0b1fbf933d52f0f3d
b
can you clean your module cache?
Copy code
go clean --modcache
and then run
go mod tidy
q
that seemed to work 😄
b
🎉