|
|
@ -26,7 +26,9 @@ changes to this codebase at the moment. |
|
|
|
#### Requirements |
|
|
|
#### Requirements |
|
|
|
1. Python v3.6+ |
|
|
|
1. Python v3.6+ |
|
|
|
2. [Google Cloud SDK](https://cloud.google.com/sdk/docs/install) |
|
|
|
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 |
|
|
|
#### Configure GKE cluster |
|
|
|
This is an example outlining minimal requirements to run `tests.baseline_test`. |
|
|
|
This is an example outlining minimal requirements to run `tests.baseline_test`. |
|
|
@ -147,6 +149,9 @@ END |
|
|
|
|
|
|
|
|
|
|
|
##### Configure GKE cluster access |
|
|
|
##### Configure GKE cluster access |
|
|
|
```shell |
|
|
|
```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 |
|
|
|
# Configuring GKE cluster access for kubectl |
|
|
|
gcloud container clusters get-credentials "your_gke_cluster_name" --zone "your_gke_cluster_zone" |
|
|
|
gcloud container clusters get-credentials "your_gke_cluster_name" --zone "your_gke_cluster_zone" |
|
|
|
|
|
|
|
|
|
|
|