Hi,
How to specify kubernetes version at aws eks cluster at config file ?
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/
Most helpful comment
Hi @tkang007,
The Kubernetes version is specified in
metadata.version. The supported versions are 1.11, 1.12 and 1.13.You can find the full schema for ClusterConfig here: https://eksctl.io/usage/schema/