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 \