You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,16 +72,18 @@ Follow these steps to deploy Kubeflow:
70
72
71
73
```bash
72
74
# The following command is optional, to make kfctl binary easier to use.
73
-
export PATH=$PATH:<path to kfctl in your kubeflow installation>
74
-
export ZONE=<your target zone> #where the deployment will be created
75
+
export PATH=$PATH:<path to your kfctl file>
76
+
export ZONE=<your target GCP zone> #where the deployment will be created
75
77
76
78
export PROJECT=<your GCP project ID>
77
79
78
-
# The value of KFAPP must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character. (For example, 'kubeflow-test' or 'kfw-test'.)
80
+
# Set KFAPP to the name of your Kubeflow application. See detailed
81
+
# description in the text below this code snippet.
82
+
# For example, 'kubeflow-test' or 'kfw-test'.
79
83
export KFAPP=<your choice of application directory name>
80
-
# Default uses Cloud IAP:
84
+
# Run this command for the default installation which uses Cloud IAP:
@@ -90,6 +94,9 @@ Follow these steps to deploy Kubeflow:
90
94
configurations to be stored. This directory is created when you run
91
95
`kfctl init`. If you want a custom deployment name, specify that name here.
92
96
The value of this variable becomes the name of your deployment.
97
+
The value of KFAPP must consist of lower case alphanumeric characters or
98
+
'-', and must start and end with an alphanumeric character.
99
+
For example, 'kubeflow-test' or 'kfw-test'.
93
100
The value of this variable cannot be greater than 25 characters. It must
94
101
contain just the directory name, not the full path to the directory.
95
102
The content of this directory is described in the next section.
@@ -98,37 +105,41 @@ Follow these steps to deploy Kubeflow:
98
105
* **${ZONE}** - You can see a list of zones [here](https://cloud.google.com/compute/docs/regions-zones/#available).
99
106
If you plan to use accelerators, make sure to pick a zone that supports the type you want.
100
107
* When you run `kfctl init` you need to choose to use either IAP or basic
101
-
authentication, as described below.
108
+
authentication, as described above.
102
109
* `kfctl generate all` attempts to fetch your email address from your
103
110
credential. If it can't find a valid email address, you need to pass a
104
111
valid email address with flag `--email <your email address>`. This email
105
112
address becomes an administrator in the configuration of your Kubeflow
106
113
deployment.
107
114
108
115
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):
116
+
1. The deployment process creates a separate deployment for your data storage.
117
+
After running `kfctl apply` you should notice two new [deployments](https://console.cloud.google.com/dm/deployments):
111
118
* **{KFAPP}-storage**: This deployment has persistent volumes for your
112
119
pipelines.
113
-
* **{KFAPP}**: This deployment has all the components of Kubeflow, including a [GKE cluster](https://console.cloud.google.com/kubernetes/list) named **${KFAPP}** with Kubeflow installed.
120
+
* **{KFAPP}**: This deployment has all the components of Kubeflow, including
121
+
a [GKE cluster](https://console.cloud.google.com/kubernetes/list)
122
+
named **${KFAPP}** with Kubeflow installed.
114
123
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:
124
+
1. When the deployment finishes, check the resources installed in the namespace
125
+
`kubeflow` in your new cluster. To do this from the command line, first set
126
+
your `kubectl` credentials to point to the new cluster:
0 commit comments