Install on AWS
This guide runs through how to set up and install Seldon Core in a Kubernetes cluster running on AWS. By the end, you'll have Seldon Core up and running and be ready to start deploying machine learning models.
Prerequisites
AWS CLI
You will need the AWS CLI in order to retrieve your cluster authentication credentials. It can also be used to create clusters and other resources for you:
Elastic Kubernetes Service (EKS) Cluster
If you haven't already created a Kubernetes cluster on EKS, you can follow this quickstart guide to get set up with your first cluster. We recommend using the eksctl path to create your cluster as it simplifies the process of creating IAM roles, VPCs and subnets.
If you are planning to use Ambassador for ingress, your cluster needs to be running Kubernetes
Kubectl
kubectl is the Kubernetes command-line tool. It allows you to run commands against Kubernetes clusters, which we'll need to do as part of setting up Seldon Core.
Helm
Helm is a package manager that makes it easy to find, share and use software built for Kubernetes. If you don't already have Helm installed locally, you can install it here:
Connect to Your Cluster
You can connect to your cluster by running the following aws eks command:
This will configure kubectl to use your AWS Kubernetes cluster. Don't forget to replace CLUSTER_NAME with whatever you called your cluster when you created it. If you've forgotten your cluster name you can run aws eks list-clusters.
Install Cluster Ingress
Ingress is a Kubernetes object that provides routing rules for your cluster. It manages the incoming traffic and routes it to the services running inside the cluster.
Seldon Core supports using either Istio or Ambassador to manage incoming traffic. Seldon Core automatically creates the objects and rules required to route traffic to your deployed machine learning models.
Istio is an open source service mesh. If the term service mesh is unfamiliar to you, it's worth reading a little more about Istio.
Download Istio
For Linux and macOS, the easiest way to download Istio is using the following command:
Move to the Istio package directory. For example, if the package is istio-1.11.4:
Add the istioctl client to your path (Linux or macOS):
Install Istio
Istio provides a command line tool istioctl to make the installation process easy. The demo configuration profile has a good set of defaults that will work on your local cluster.
The namespace label istio-injection=enabled instructs Istio to automatically inject proxies alongside anything we deploy in that namespace. We'll set it up for our default namespace:
Create Istio Gateway
In order for Seldon Core to use Istio's features to manage cluster traffic, we need to create an Istio Gateway by running the following command:
You will need to copy the entire command from the code block below
For custom configuration and more details on installing Seldon Core with Istio please see the Istio Ingress page.
Ambassador is a Kubernetes ingress controller and API gateway. It routes incoming traffic to the underlying Kubernetes workloads through configuration. Install Ambassador following their docs.
Install Seldon Core
Before we install Seldon Core, we'll create a new namespace seldon-system for the operator to run in:
We're now ready to install Seldon Core in our cluster. Run the following command for your choice of Ingress:
You can check that your Seldon Controller is running by doing:
You should see a seldon-controller-manager pod with STATUS=Running.
Accessing your models
Congratulations! Seldon Core is now fully installed and operational. Before you move on to deploying models, make a note of your cluster IP and port:
This is the public address you will use to access models running in your cluster.
Ambassador is currently not supported on Kubernetes 1.22+, the following instructions will only work on Kubernetes v1.21 or older.
This is the public address you will use to access models running in your cluster.
You are now ready to deploy models to your cluster.
Last updated
Was this helpful?