Skip to content

Commit b3fb238

Browse files
amygdalak8s-ci-robot
authored andcommitted
added a few clarifications to the GKE CLI installation instructions (kubeflow#1026)
1 parent ecc9c5b commit b3fb238

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

content/docs/gke/deploy/deploy-cli.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ Follow these steps to deploy Kubeflow:
9595
The content of this directory is described in the next section.
9696
* **${PROJECT}** - the project ID of the GCP project where you want Kubeflow
9797
deployed.
98+
* **${ZONE}** - You can see a list of zones [here](https://cloud.google.com/compute/docs/regions-zones/#available).
99+
If you plan to use accelerators, make sure to pick a zone that supports the type you want.
98100
* When you run `kfctl init` you need to choose to use either IAP or basic
99101
authentication, as described below.
100102
* `kfctl generate all` attempts to fetch your email address from your
@@ -103,17 +105,25 @@ Follow these steps to deploy Kubeflow:
103105
address becomes an administrator in the configuration of your Kubeflow
104106
deployment.
105107
106-
1. Check the resources deployed in namespace `kubeflow`:
108+
109+
1. The deployment process creates a separate deployment for your data storage. After
110+
running `kfctl apply` you should notice two new [deployments](https://console.cloud.google.com/dm/deployments):
111+
* **{KFAPP}-storage**: This deployment has persistent volumes for your
112+
pipelines.
113+
* **{KFAPP}**: This deployment has all the components of Kubeflow, including a [GKE cluster](https://console.cloud.google.com/kubernetes/list?project=aju-vtests2) named **${KFAPP}** with Kubeflow installed.
114+
115+
1. Once the deployment finishes, check the resources installed in the namespace `kubeflow` in your new cluster. To do this from the command line, first set your `kubectl` credentials to point to the new cluster:
116+
117+
```
118+
gcloud container clusters get-credentials ${KFAPP} --zone ${ZONE} --project ${PROJECT}
119+
```
120+
121+
Then, see what's installed in the `kubeflow` *namespace* of your GKE cluster:
107122
108123
```
109124
kubectl -n kubeflow get all
110125
```
111126
112-
1. The process creates a separate deployment for your data storage. After
113-
running `kfctl apply` you should notice 2 deployments (clusters):
114-
* **{KFAPP}-storage**: This deployment has persistent volumes for your
115-
pipelines.
116-
* **{KFAPP}**: This deployment has all the components of Kubeflow.
117127
118128
1. Kubeflow will be available at the following URI:
119129

0 commit comments

Comments
 (0)