https://pulumi.com logo
Title
p

prehistoric-arm-87050

01/15/2021, 3:13 PM
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

brave-planet-10645

01/15/2021, 3:41 PM
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

prehistoric-arm-87050

01/15/2021, 3:57 PM
Thanks @brave-planet-10645 this is very helpful
šŸ‘ 1
I’m trying to set it up now šŸ™‚
b

brave-planet-10645

01/15/2021, 5:03 PM
If you have any more questions just drop them in here šŸ™‚
p

prehistoric-arm-87050

01/19/2021, 6:24 PM
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

brave-planet-10645

01/19/2021, 7:11 PM
This will be an argument that you pass into the cluster resource
So something like
const cluster = new eks.cluster("my-cluster", {
...otherOptions,
version: "1.7"
});