https://pulumi.com logo
m

mammoth-kilobyte-28336

09/07/2023, 7:48 AM
Has anyone else been encountering problems with downloading the EKS plugin for the past six hours? The URL returns 403 from everywhere.
c

cuddly-computer-18851

09/07/2023, 8:14 AM
You're using an alpha release so its probably been upgraded?
m

miniature-dog-52088

09/07/2023, 9:12 AM
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

mammoth-kilobyte-28336

09/07/2023, 9:19 AM
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

miniature-dog-52088

09/07/2023, 9:20 AM
Oh right! Thank you @mammoth-kilobyte-28336 👍
m

mammoth-kilobyte-28336

09/07/2023, 9:21 AM
btw. i've opened a support ticket and they acknowledged something is off and that it has been escalated to engineering team.
m

melodic-tomato-39005

09/07/2023, 9:41 AM
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

miniature-dog-52088

09/07/2023, 10:08 AM
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

mammoth-kilobyte-28336

09/07/2023, 11:08 AM
@miniature-dog-52088 Thank you for elaborating, We use the
--exact
parameter. Luckily the issue is resolved now.