future-refrigerator-88869
11/03/2021, 11:43 PMpulumi preview
as part of a github action and keeps complaining about not finding the eks provider:
error: no resource plugin 'eks' found in the workspace or on your $PATH
In my package.json as part of dependencies i have eks "@pulumi/eks": "^0.34.0"
. This seems to be working locally but in the actions it fails.
As part of the npm install
in CI, I can see that the other pulumi packages that I use (for example cloudflare) are getting registered as part of npm install, however EKS package does not produce any log. Any ideas ?billowy-army-68599
pulumi plugin install resource eks <version>
future-refrigerator-88869
11/04/2021, 12:25 AMbillowy-army-68599
package.json
?
⢠can you share your npm install log?future-refrigerator-88869
11/04/2021, 12:33 AMeks package
you mean @pulumi/eks
then yes. I linked the version in the original message. It also has the correct version in package-lock
.
Install log in CI (without the Downloading bits)
> @pulumi/aws@4.25.0 install /home/runner/work/devops/devops/node_modules/@pulumi/aws
> node scripts/install-pulumi-plugin.js resource aws v4.25.0
[resource plugin aws-4.25.0] installing
> @pulumi/docker@3.1.0 install /home/runner/work/devops/devops/node_modules/@pulumi/docker
> node scripts/install-pulumi-plugin.js resource docker v3.1.0
[resource plugin docker-3.1.0] installing
> @pulumi/kubernetes@3.8.3 install /home/runner/work/devops/devops/node_modules/@pulumi/kubernetes
> node scripts/install-pulumi-plugin.js resource kubernetes v3.8.3
[resource plugin kubernetes-3.8.3] installing
> @pulumi/cloudflare@4.0.0 install /home/runner/work/devops/devops/node_modules/@pulumi/cloudflare
> node scripts/install-pulumi-plugin.js resource cloudflare v4.0.0
[resource plugin cloudflare-4.0.0] installing
> @pulumi/random@4.3.1 install /home/runner/work/devops/devops/node_modules/@pulumi/random
> node scripts/install-pulumi-plugin.js resource random v4.3.1
[resource plugin random-4.3.1] installing
> @pulumi/tls@4.0.0 install /home/runner/work/devops/devops/node_modules/@pulumi/tls
> node scripts/install-pulumi-plugin.js resource tls v4.0.0
[resource plugin tls-4.0.0] installing
These are the only ones relevant to pulumi. It just seems like eks is completely ignoredpackage.json
like the rest of pluginsbillowy-army-68599
future-refrigerator-88869
11/04/2021, 3:10 PM