Update instruction to use latest GKE and COS image. (#1294)

* Update to use latest GKE and COS image.

* Fix e2e test, again

* Fix kubetest extract strategy

* Add back the node-image option
This commit is contained in:
Nghia Tran 2018-06-21 10:37:19 -07:00 committed by Google Prow Robot
parent 79b0e5879b
commit fd5b2b3d1e
1 changed files with 3 additions and 4 deletions

View File

@ -30,8 +30,7 @@ To use a k8s cluster running in GKE:
```shell
gcloud --project=$PROJECT_ID container clusters create \
--cluster-version=1.10.2-gke.3 \
--image-type "UBUNTU" \
--cluster-version=latest \
--zone=us-east1-d \
--scopes=cloud-platform \
--machine-type=n1-standard-4 \
@ -54,10 +53,10 @@ To use a k8s cluster running in GKE:
# Get the list of valid versions in us-east1-d
gcloud container get-server-config --zone us-east1-d
```
1. **Alternately**, if you wish to re-use an already-created cluster,
you can fetch the credentials to your local machine with:
```shell
# Load credentials for the new cluster in us-east1-d
gcloud container clusters get-credentials --zone us-east1-d knative-demo