Kubeflow Orchestrator
Orchestrating your pipelines to run on Kubeflow.
The Kubeflow orchestrator is an orchestrator flavor provided by the ZenML kubeflow integration that uses Kubeflow Pipelines to run your pipelines.
This component is only meant to be used within the context of a remote ZenML deployment scenario. Usage with a local ZenML deployment may lead to unexpected behavior!
When to use it
You should use the Kubeflow orchestrator if:
you're looking for a proven production-grade orchestrator.
you're looking for a UI in which you can track your pipeline runs.
you're already using Kubernetes or are not afraid of setting up and maintaining a Kubernetes cluster.
you're willing to deploy and maintain Kubeflow Pipelines on your cluster.
How to deploy it
To run ZenML pipelines on Kubeflow, you'll need to set up a Kubernetes cluster and deploy Kubeflow Pipelines on it. This can be done in a variety of ways, depending on whether you want to use a cloud provider or your own infrastructure:
Have an existing AWS EKS cluster set up.
Make sure you have the AWS CLI set up.
Download and install
kubectland configure it to talk to your EKS cluster using the following command:aws eks --region REGION update-kubeconfig --name CLUSTER_NAMEInstall Kubeflow Pipelines onto your cluster.
( optional) set up an AWS Service Connector to grant ZenML Stack Components easy and secure access to the remote EKS cluster.
Have an existing GCP GKE cluster set up.
Make sure you have the Google Cloud CLI set up first.
Install Kubeflow Pipelines onto your cluster.
( optional) set up a GCP Service Connector to grant ZenML Stack Components easy and secure access to the remote GKE cluster.
Have an existing AKS cluster set up.
Make sure you have the
azCLI set up first.Download and install
kubectland ensure that it talks to your AKS cluster using the following command:az aks get-credentials --resource-group RESOURCE_GROUP --name CLUSTER_NAMEInstall Kubeflow Pipelines onto your cluster.
Have an existing Kubernetes cluster set up.
Download and install
kubectland configure it to talk to your Kubernetes cluster.Install Kubeflow Pipelines onto your cluster.
( optional) set up a Kubernetes Service Connector to grant ZenML Stack Components easy and secure access to the remote Kubernetes cluster. This is especially useful if your Kubernetes cluster is remotely accessible, as this enables other ZenML users to use it to run pipelines without needing to configure and set up
kubectlon their local machines.
If you're installing Kubeflow Pipelines manually, make sure the Kubernetes service is called exactly ml-pipeline. This is a requirement for ZenML to connect to your Kubeflow Pipelines deployment.
How to use it
To use the Kubeflow orchestrator, we need:
A Kubernetes cluster with Kubeflow pipelines installed. See the deployment section for more information.
A ZenML server deployed remotely where it can be accessed from the Kubernetes cluster. See the deployment guide for more information.
The ZenML
kubeflowintegration installed. If you haven't done so, runDocker installed and running (unless you are using a remote Image Builder in your ZenML stack).
kubectl installed (optional, see below)
The name of your Kubernetes context which points to your remote cluster. Run
kubectl config get-contextsto see a list of available contexts. NOTE: this is no longer required if you are using a Service Connector to connect your Kubeflow Orchestrator Stack Component to the remote Kubernetes cluster.A remote artifact store as part of your stack.
A remote container registry as part of your stack.
We can then register the orchestrator and use it in our active stack. This can be done in two ways:
If you have a Service Connector configured to access the remote Kubernetes cluster, you no longer need to set the
kubernetes_contextattribute to a localkubectlcontext. In fact, you don't need the local Kubernetes CLI at all. You can connect the stack component to the Service Connector instead:The following example demonstrates how to register the orchestrator and connect it to a remote Kubernetes cluster using a Service Connector:
if you don't have a Service Connector on hand and you don't want to register one, the local Kubernetes
kubectlclient needs to be configured with a configuration context pointing to the remote cluster. Thekubernetes_contextmust also be configured with the value of that context:
You can now run any ZenML pipeline using the Kubeflow orchestrator:
Kubeflow UI
Kubeflow comes with its own UI that you can use to find further details about your pipeline runs, such as the logs of your steps. For any runs executed on Kubeflow, you can get the URL to the Kubeflow UI in Python using the following code snippet:
Additional configuration
For additional configuration of the Kubeflow orchestrator, you can pass KubeflowOrchestratorSettings which allows you to configure (among others) the following attributes:
client_args: Arguments to pass when initializing the KFP client.user_namespace: The user namespace to use when creating experiments and runs.pod_settings: Node selectors, affinity, and tolerations to apply to the Kubernetes Pods running your pipeline. These can be either specified using the Kubernetes model objects or as dictionaries.
Check out the SDK docs for a full list of available attributes and this docs page for more information on how to specify settings.
Enabling CUDA for GPU-backed hardware
Note that if you wish to use this orchestrator to run steps on a GPU, you will need to follow the instructions on this page to ensure that it works. It requires adding some extra settings customization and is essential to enable CUDA for the GPU to give its full acceleration.
Important Note for Multi-Tenancy Deployments
Kubeflow has a notion of multi-tenancy built into its deployment. Kubeflow's multi-user isolation simplifies user operations because each user only views and edited the Kubeflow components and model artifacts defined in their configuration.
Using the ZenML Kubeflow orchestrator on a multi-tenant deployment without any settings will result in the following error:
In order to get it to work, we need to leverage the KubeflowOrchestratorSettings referenced above. By setting the namespace option, and by passing in the right authentication credentials to the Kubeflow Pipelines Client, we can make it work.
First, when registering your Kubeflow orchestrator, please make sure to include the kubeflow_hostname parameter. The kubeflow_hostname must end with the /pipeline post-fix.
Then, ensure that you use the pass the right settings before triggering a pipeline run. The following snippet will prove useful:
Note that the above is also currently not tested on all Kubeflow versions, so there might be further bugs with older Kubeflow versions. In this case, please reach out to us on Slack.
Using secrets in settings
The above example encoded the username and password in plain text as settings. You can also set them as secrets.
And then you can use them in code:
See full documentation of using ZenML secrets here.
For more information and a full list of configurable attributes of the Kubeflow orchestrator, check out the SDK Docs .
Last updated
Was this helpful?