Has anyone else been encountering problems with do...
# general
m
Has anyone else been encountering problems with downloading the EKS plugin for the past six hours? The URL returns 403 from everywhere.
c
You're using an alpha release so its probably been upgraded?
m
This is happening for us as well. For some reason Pulumi CLI wants to download this alpha version -- which is not available -- by default when installing the eks plugin.
pulumi plugin install resource eks
causes the forementioned error but
pulumi plugin install resource eks 1
works (installing a 1.x version)
Now how to fix this when using automation (Golang) is another issue which I have not figured out yet.
m
We are using pulumi automation (TS) api which installs these plugins automatically, adding
pulumi plugin install resource eks 1
or with
--exact
before the
npm start
or `pulumi up`command mitigated the issue for us because it has a plugin version to work with.
m
Oh right! Thank you @mammoth-kilobyte-28336 👍
m
btw. i've opened a support ticket and they acknowledged something is off and that it has been escalated to engineering team.
m
Hi all, apologies for the trouble. That v2.0.0-alpha.1 release wasn’t marked as a prerelease as it should have been. It’s fixed now.
m
btw @mammoth-kilobyte-28336
pulumi plugin install resource eks 1
will install (contrary to my assumption) the oldest version in the 1 line (1.0.0) instead of the newest.
m
@miniature-dog-52088 Thank you for elaborating, We use the
--exact
parameter. Luckily the issue is resolved now.