Deploy using CLI
This guide describes how to use the kfctl
command line interface (CLI) to
deploy Kubeflow on GCP. The command line deployment gives you more control over
the deployment process and configuration than you get if you use the deployment
UI. If you’re looking for a simpler deployment procedure, see how to deploy
Kubeflow using the deployment UI.
Before you start
Before installing Kubeflow on the command line:
- Ensure you have installed the following tools:
- kubectl.
- gcloud. If you already have
gcloud
installed, rungcloud components update
to get the latest version of all your installed Cloud SDK components.
-
If you’re using Cloud Shell, enable boost mode.
-
If you want to use Cloud Identity-Aware Proxy (Cloud IAP) for access control, follow the guide to setting up OAuth credentials. Cloud IAP is recommended for production deployments or deployments with access to sensitive data. Alternatively, you can use basic authentication with a username and password.
Deploy Kubeflow
Follow these steps to deploy Kubeflow:
-
Create user credentials. You only need to run this command once:
gcloud auth application-default login
-
Create environment variables for your access control services:
# If using Cloud IAP, create environment variables from the # OAuth client ID and secret that you obtained earlier: export CLIENT_ID=<CLIENT_ID from OAuth page> export CLIENT_SECRET=<CLIENT_SECRET from OAuth page> # If using basic authentication, create environment variables for # username and password: export KUBEFLOW_USERNAME=<your username> export KUBEFLOW_PASSWORD=<your password>
-
Download a
kfctl
release from the Kubeflow releases page. -
Unpack the tar ball:
tar -xvf kfctl_<release tag>_<platform>.tar.gz
-
Run the following commands to set up and deploy Kubeflow. The code below includes an optional command to add the binary
kfctl
to your path. If you don’t add the binary to your path, you must use the full path to thekfctl
binary each time you run it.# The following command is optional, to make kfctl binary easier to use. export PATH=$PATH:<path to your kfctl file> # Set KFAPP to the name of your Kubeflow application. See detailed # description in the text below this code snippet. # For example, 'kubeflow-test' or 'kfw-test'. export KFAPP=<your choice of application directory name> export ZONE=<your target GCP zone> # where the deployment will be created export PROJECT=<your GCP project ID> # Run the following commands for the default installation which uses Cloud IAP: export CONFIG="https://raw.githubusercontent.com/kubeflow/kubeflow/c54401e/bootstrap/config/kfctl_gcp_iap.0.6.2.yaml" kfctl init ${KFAPP} --project=${PROJECT} --config=${CONFIG} -V # Alternatively, run these commands if you want to use basic authentication: export CONFIG="https://raw.githubusercontent.com/kubeflow/kubeflow/c54401e/bootstrap/config/kfctl_gcp_basic_auth.0.6.2.yaml" kfctl init ${KFAPP} --project=${PROJECT} --config=${CONFIG} -V --use_basic_auth cd ${KFAPP} kfctl generate all -V --zone ${ZONE} kfctl apply all -V
- ${KFAPP} - the name of a directory where you want Kubeflow
configurations to be stored. This directory is created when you run
kfctl init
. If you want a custom deployment name, specify that name here. The value of this variable becomes the name of your deployment. 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’. The value of this variable cannot be greater than 25 characters. It must contain just the directory name, not the full path to the directory. The content of this directory is described in the next section. - ${PROJECT} - the project ID of the GCP project where you want Kubeflow deployed.
- ${ZONE} - You can see a list of zones here. If you plan to use accelerators, make sure to pick a zone that supports the type you want.
- When you run
kfctl init
you need to choose to use either IAP or basic authentication, as described above. kfctl generate all
attempts to fetch your email address from your credential. If it can’t find a valid email address, you need to pass a valid email address with flag--email <your email address>
. This email address becomes an administrator in the configuration of your Kubeflow deployment.
- ${KFAPP} - the name of a directory where you want Kubeflow
configurations to be stored. This directory is created when you run
-
The deployment process creates a separate deployment for your data storage. After running
kfctl apply
you should notice two new deployments:- {KFAPP}-storage: This deployment has persistent volumes for your pipelines.
- {KFAPP}: This deployment has all the components of Kubeflow, including a GKE cluster named ${KFAPP} with Kubeflow installed.
-
When the deployment finishes, check the resources installed in the namespace
kubeflow
in your new cluster. To do this from the command line, first set yourkubectl
credentials to point to the new cluster:gcloud container clusters get-credentials ${KFAPP} --zone ${ZONE} --project ${PROJECT}
Then see what’s installed in the
kubeflow
namespace of your GKE cluster:kubectl -n kubeflow get all
-
Access the Kubeflow central dashboard at the following URI when it becomes available:
https://<KFAPP>.endpoints.<project-id>.cloud.goog/
- It can take 20 minutes for the URI to become available. Kubeflow needs to provision a signed SSL certificate and register a DNS name.
- If you own/manage the domain or a subdomain with Cloud DNS then you can configure this process to be much faster. See kubeflow/kubeflow#731.
-
We recommend that you check in the contents of your ${KFAPP} directory into source control.
Understanding the deployment process
The kfctl
deployment process includes by the following commands:
- init - performs a one-time setup.
- generate - creates configuration files defining the various resources.
- apply - creates or updates the resources.
- delete - deletes the resources.
With the exception of init
, all commands take an argument which describes the
set of resources to apply the command to. This argument can be one of the
following:
- platform - all GCP resources; that is, anything that doesn’t run on Kubernetes.
- k8s - all resources that run on Kubernetes.
- all - all GCP and Kubernetes resources.
App layout
Your Kubeflow app directory ${KFAPP} contains the following files and directories:
-
app.yaml defines configurations related to your Kubeflow deployment.
- The values are set when you run
kfctl init
. - The values are snapshotted inside app.yaml to make your app self contained.
- The values are set when you run
-
gcp_config is a directory that contains Deployment Manager configuration files defining your GCP infrastructure.
- The directory is created when you run
kfctl generate platform
. - You can modify these configurations to customize your GCP infrastructure.
- The directory is created when you run
-
kustomize is a directory that contains the kustomize packages for Kubeflow applications. See how Kubeflow uses kustomize.
- The directory is created when you run
kfctl generate
. - You can customize the Kubernetes resources by modifying the manifests and
running
kfctl apply
again.
- The directory is created when you run
GCP service accounts
Creating a deployment using kfctl
creates three service accounts in your
GCP project. These service accounts are created using the principle of least
privilege.
The three service accounts are:
${KFAPP}-admin
is used for some admin tasks like configuring the load balancers. The principle is that this account is needed to deploy Kubeflow but not needed to actually run jobs.${KFAPP}-user
is intended to be used by training jobs and models to access GCP resources (Cloud Storage, BigQuery, etc.). This account has a much smaller set of privileges compared toadmin
.${KFAPP}-vm
is used only for the virtual machine (VM) service account. This account has the minimal permissions needed to send metrics and logs to Stackdriver.
Next steps
- Run a full ML workflow on Kubeflow, using the end-to-end MNIST tutorial or the GitHub issue summarization example.
- See how to delete your Kubeflow deployment using the CLI.
- See how to customize your Kubeflow deployment.
- See how to upgrade Kubeflow and how to upgrade or reinstall a Kubeflow Pipelines deployment.
- Troubleshoot any issues you may find.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.