I see the eks package was released at `v0.17.0` bu...
# general
e
I see the eks package was released at
v0.17.0
but I'm seeing this error on `npm install`:
Copy code
]$ npm install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for @pulumi/eks@0.17.0
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of 'eks-cluster'
npm ERR! notarget
Is it not yet published?
g
It is not yet published. 0.16.6 is the latest published version. https://www.npmjs.com/package/@pulumi/eks
In general it's best to not follow "latest" for your dependencies.
e
that's bit us a couple times already so we locked to specific versions
g
It's great for testing but for real deployments, it's best to pin to specific versions.
Yea, I highly recommend setting specific versions and only upgrading when you're ready.
e
👍