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
# Build and deploy data and machine learning pipelines with Flyte on Azure Kubernetes Service (AKS)
13
13
14
-
This article shows you how to use Flyte on Azure Kubernetes Service (AKS). Flyte is an open-source workflow orchestrator that unifies machine learning, data engineering, and data analytics stacks to help you build robust and reliable applications. When using Flyte as a Kubernetes-native workflow automation tool, you can focus on experimentation and providing business value without increasing your scope to infrastructure and resource management.
14
+
This article shows you how to use Flyte on Azure Kubernetes Service (AKS). Flyte is an open-source workflow orchestrator that unifies machine learning, data engineering, and data analytics stacks to help you build robust and reliable applications. When using Flyte as a Kubernetes-native workflow automation tool, you can focus on experimentation and providing business value without increasing your scope to infrastructure and resource management. Keep in mind that Flyte isn't officially supported by Microsoft, so use it at your own discretion.
15
15
16
-
For more information, see [Introduction to Flyte](https://docs.flyte.org/en/latest/introduction.html).
16
+
For more information, see [Introduction to Flyte][flyte].
17
17
18
18
## Prerequisites
19
19
20
-
* An Azure subscription. If you don't have an Azure subscription, you can create a [free account](https://azure.microsoft.com/free).
20
+
* An Azure subscription. If you don't have an Azure subscription, you can create a [free account][azure-free].
21
21
* If you have multiple subscriptions, make sure you select the correct one using the `az account set --subscription <subscription-id>` command.
22
-
* The Azure CLI installed and configured. Check your version using the `az --version` command. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
23
-
* The Helm CLI installed and updated. Check your version using the `helm version` command. If you need to install or upgrade, see [Install Helm](https://helm.sh/docs/intro/install/).
24
-
* The `kubectl` CLI installed and updated. Install it locally using the `az aks install-cli` command or using [Install kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/).
25
-
* A local Docker development environment. For more information, see [Get Docker](https://docs.docker.com/get-docker/).
26
-
*`flytekit` and `flytectl` installed. For more information, see [Flyte installation](https://flyte-next.readthedocs.io/en/latest/introduction.html#installation).
22
+
* The Azure CLI installed and configured. Check your version using the `az --version` command. If you need to install or upgrade, see [Install the Azure CLI][install-azure-cli].
23
+
* The Helm CLI installed and updated. Check your version using the `helm version` command. If you need to install or upgrade, see [Install Helm][install-helm].
24
+
* The `kubectl` CLI installed and updated. Install it locally using the `az aks install-cli` command or using [Install kubectl][install-kubectl].
25
+
* A local Docker development environment. For more information, see [Get Docker][get-docker].
26
+
*`flytekit` and `flytectl` installed. For more information, see [Flyte installation][flyte-install].
27
27
28
28
> [!NOTE]
29
29
> If you're using the Azure Cloud Shell, the Azure CLI, Helm, and kubectl are already installed.
@@ -97,6 +97,8 @@ For more information, see [Introduction to Flyte](https://docs.flyte.org/en/late
97
97
98
98
## Deploy a Flyte chart on AKS
99
99
100
+
In this section, you deploy the flyte-binary Helm chart so you can begin building and deploying data and machine learning pipelines with Flyte on AKS. The flyte-binary chart is a basic single Flyte executable deployment.
101
+
100
102
1. Create a namespace for your Flyte deployment using the `kubectl create namespace` command.
101
103
102
104
```bash
@@ -126,12 +128,21 @@ For more information, see [Introduction to Flyte](https://docs.flyte.org/en/late
126
128
127
129
## Next steps
128
130
129
-
In this article, you learned how to deploy a Flyte chart on AKS. To learn more about deployments on AKS, see the following articles:
131
+
In this article, you learned how to deploy a Flyte chart on AKS. To start building and deploying data and machine learning pipelines, see the following articles:
130
132
131
-
* [Install existing applications with Helm on Azure Kubernetes Service (AKS)](./kubernetes-helm.md)
132
-
* [Deploy a containerized application to Azure Kubernetes Service (AKS)](./tutorial-kubernetes-deploy-application.md)
133
+
* [Perform exploratory data analysis (EDA) with Flyte and Jupyter notebooks][flyte-eda]
134
+
* [Orchestrate an ML pipeline with Flyte to predict housing prices across regions][flyte-pipelines]
0 commit comments