xds-k8s: address feedback on first-time setup (#27488)

pull/27400/head
Sergii Tkachenko 3 years ago committed by GitHub
parent 056a15c225
commit 5617f78692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      tools/run_tests/xds_k8s_test_driver/README.md

@ -26,7 +26,9 @@ changes to this codebase at the moment.
#### Requirements
1. Python v3.6+
2. [Google Cloud SDK](https://cloud.google.com/sdk/docs/install)
3. Configured GKE cluster
3. `kubectl`
`kubectl` can be installed via `gcloud components install kubectl`, or system package manager: https://kubernetes.io/docs/tasks/tools/#kubectl
#### Configure GKE cluster
This is an example outlining minimal requirements to run `tests.baseline_test`.
@ -147,6 +149,9 @@ END
##### Configure GKE cluster access
```shell
# Unless you're using GCP VM with preconfigured Application Default Credentials, acquire them for your user
gcloud auth application-default login
# Configuring GKE cluster access for kubectl
gcloud container clusters get-credentials "your_gke_cluster_name" --zone "your_gke_cluster_zone"

Loading…
Cancel
Save