mirror of https://github.com/knative/docs.git
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
This commit is contained in:
parent
86f4134171
commit
a9838d68c6
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue