Hi there, Iā€™m setting up k8s on AWS EKS and exampl...
# kubernetes
p
Hi there, Iā€™m setting up k8s on AWS EKS and examples work fine, however I need to specify v1.6 or v1.7 - I could not find how to do this? Is it via the kubernetes plugin
b
If you're using the Pulumi EKS package you can set it using the
version
property: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/eks/#ClusterOptions-version
p
Thanks @brave-planet-10645 this is very helpful
šŸ‘ 1
Iā€™m trying to set it up now šŸ™‚
b
If you have any more questions just drop them in here šŸ™‚
p
is this on the object model, or in the cli's `pulumi config set aws:version=1.7 - sorry bit confused maybe
Sorry @brave-planet-10645 - just wanted to spin up right version for Hyperledger Fabric
b
This will be an argument that you pass into the cluster resource
So something like
Copy code
const cluster = new eks.cluster("my-cluster", {
...otherOptions,
version: "1.7"
});