Eksctl: how to define kubernetes version at config file

Created on 22 Jul 2019  Â·  1Comment  Â·  Source: weaveworks/eksctl

Hi,
How to specify kubernetes version at aws eks cluster at config file ?

kinhelp

Most helpful comment

Hi @tkang007,

The Kubernetes version is specified in metadata.version. The supported versions are 1.11, 1.12 and 1.13.

 apiVersion: eksctl.io/v1alpha5
 kind: ClusterConfig

 metadata:
   name: test-cluster
   version: "1.11"

# more fields
# ...

You can find the full schema for ClusterConfig here: https://eksctl.io/usage/schema/

>All comments

Hi @tkang007,

The Kubernetes version is specified in metadata.version. The supported versions are 1.11, 1.12 and 1.13.

 apiVersion: eksctl.io/v1alpha5
 kind: ClusterConfig

 metadata:
   name: test-cluster
   version: "1.11"

# more fields
# ...

You can find the full schema for ClusterConfig here: https://eksctl.io/usage/schema/

Was this page helpful?
0 / 5 - 0 ratings