From a9838d68c65dcf01104c146c13fd314db89ce83e Mon Sep 17 00:00:00 2001 From: aslom Date: Thu, 17 Jan 2019 00:22:31 +0100 Subject: [PATCH] Update kube-version to 1.10.7 (#397) * Update kube-version to 1.10.7 ``` knative1 $ ibmcloud cs cluster-create --name=$CLUSTER_NAME \ > --zone=$CLUSTER_ZONE \ > --kube-version=1.10.3 \ > --machine-type=b2c.4x16 \ > --workers=3 Creating cluster... FAILED A previous patch was specified. Only the most recent patch for a particular minor version can be specified during cluster-create. To list supported Kubernetes versions, run 'ibmcloud ks kube-versions'. (E0156) Incident ID: 5533234a-df08-478b-b298-ab0ddbe67dfe knative1 $ ibmcloud ks kube-versions OK Version 1.8.15 (deprecated, unsupported in 9 days) 1.9.10 1.10.7 (default) 1.11.2 To assess the differences across versions, see https://console.bluemix.net/docs/containers/cs_versions.html#cs_versions. ``` After change: ``` knative1 $ ibmcloud cs cluster-create --name=$CLUSTER_NAME \ > --zone=$CLUSTER_ZONE \ > --kube-version=1.10.7 \ > --machine-type=b2c.4x16 \ > --workers=3 Creating cluster... OK ``` * No longer use --kube-version to avoid need to change instructions * Update Knative-with-IKS.md --- install/Knative-with-IKS.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/install/Knative-with-IKS.md b/install/Knative-with-IKS.md index c5b5dc41b..02b9cf10d 100644 --- a/install/Knative-with-IKS.md +++ b/install/Knative-with-IKS.md @@ -74,17 +74,12 @@ components, the recommended configuration for a cluster is: ```bash ibmcloud cs region-set $CLUSTER_REGION ``` -1. Select a Kubernetes version: - ```bash - ibmcloud cs kube-versions - export CLUSTER_K8S_VERSION=[a version from the list, must be >1.11] - ``` + 1. Create a Kubernetes cluster on IKS with the required specifications: ```bash ibmcloud cs cluster-create --name=$CLUSTER_NAME \ --zone=$CLUSTER_ZONE \ - --kube-version=$CLUSTER_K8S_VERSION \ --machine-type=b2c.4x16 \ --workers=3 ``` @@ -97,7 +92,6 @@ components, the recommended configuration for a cluster is: ```bash ibmcloud cs cluster-create --name=$CLUSTER_NAME \ --zone=$CLUSTER_ZONE \ - --kube-version=$CLUSTER_K8S_VERSION \ --machine-type=b2c.4x16 \ --workers=3 \ --private-vlan $PRIVATE_VLAN_ID \