Set up an ingress controller for Label Studio Kubernetes deployments
Set up an ingress controller to manage Ingress, the Kubernetes resource that exposes HTTP and HTTPS routes from outside your Kubernetes cluster to the services within the cluster, such as Label Studio rqworkers and others.
Select the best option for your deployment:
- Ingress for Amazon Elastic Kubernetes Service (EKS)
- Ingress for Google Kubernetes Engine (GKE)
- Ingress for Microsoft Azure Kubernetes Service (AKS)
- Ingress using nginx (cloud-agnostic)
- Terminate TLS on the Load Balancer (cloud-agnostic)
Configure ingress before or after setting up persistent storage, but before you deploy Label Studio.
note
You only need to set up an ingress controller if you plan to deploy Label Studio on Kubernetes.
Configure ingress for Amazon EKS
If you plan to deploy Label Studio onto Amazon EKS, configure ingress.
- Install the AWS Load Balancer Controller to install an ingress controller with default options. See the documentation for AWS Load Balancer Controller in the Amazon EKS user guide.
- After installing the AWS Load Balancer Controller, configure SSL certificates using the AWS Certificate Manager (ACM). See Requesting a public certificate in the ACM user guide.
- Update your
ls-values.yaml
file with the ingress details like the following example. Replace"your_domain_name"
with your hostname.app: ingress: enabled: true path: /* host: "your_domain_name" className: alb annotations: alb.ingress.kubernetes.io/scheme: internet-facing alb.ingress.kubernetes.io/target-type: ip
note
If you want to configure a certificate that you create in the ACM for the load balancer, add this annotation (updated for your certificate) to your ls-values.yaml
file:
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:region:account-id:certificate/aaaa-bbbb-cccc
For more details about annotations that you can configure with ingress, see the guide on Ingress annotations in the AWS Load Balancer Controller documentation on GitHub.
Configure ingress for GKE
Google Kubernetes Engine (GKE) contains two pre-installed Ingress classes:
- The
gce
class deploys an external load balancer - The
gce-internal
class deploys an internal load balancer
Label Studio is considered as an external service, so you want to use the gce
class to deploy an external load balancer.
- Update your
ls-values.yaml
file with the ingress details like the following example. Replace"your_domain_name"
with your hostname.app: service: type: nodePort ingress: enabled: true path: /* host: "your_domain_name" className: gce
note
You can also request Google-managed SSL certificates to use on the load balancer. See the details on Using Google-managed SSL certificates in the Google Kubernetes Engine how-to guide. If you use a managed certificate, add an annotation to your ls-values.yaml
file like the following example, replacing "managed-cert"
with your ManagedCertificate object name:
"networking.gke.io/managed-certificates": "managed-cert"
For more details about annotations and ingress in GKE, see Configuring Ingress for external load balancing in the Google Kubernetes Engine how-to guide.
Configure ingress for Microsoft Azure Kubernetes Service
Configure ingress for Microsoft Azure Kubernetes Service (AKS).
- Deploy an Application Gateway Ingress Controller (AGIC) using a new Application Gateway. See How to Install an Application Gateway Ingress Controller (AGIC) Using a New Application Gateway in the Microsoft Azure Ingress for AKS how-to guide.
- Update your
ls-values.yaml
file with the ingress details like the following example. Replace"your_domain_name"
with your hostname.app: ingress: enabled: true host: "your_domain_name" className: azure/application-gateway
note
You can create a self-signed certificate to use in AGIC. Follow the steps to Create a self-signed certificate in the Microsoft Azure Networking Tutorial: Configure an application gateway with TLS termination using the Azure portal.
For more details about using AGIC with Microsoft Azure, see What is Application Gateway Ingress Controller? and Annotations for Application Gateway Ingress Controller in the Microsoft Azure Application Gateway documentation.
Set up a cloud-agnostic ingress configuration
For advanced Kubernetes administrators, you can use the NGINX Ingress Controller to set up a cloud-agnostic ingress controller.
- Deploy NGINX Ingress Controller following the relevant steps for your cloud deployment. See Cloud deployments in the NGINX Ingress Controller Installation Guide.
- In order to terminate SSL certificates in the ingress controller, install cert-manager. See Installation on the cert-manager documentation site.
- You must synchronize the ingress hosts with DNS. Install ExternalDNS and choose the relevant cloud provider for your deployment.
- Finally, update your
ls-values.yaml
file with the ingress details like the following example. Replace"your_domain_name"
with your hostname and<CERTIFICATE_NAME>
with the name of the resource that you created with ExternalDNS.app: ingress: enabled: true host: "your_domain_name" className: nginx annotations: nginx.ingress.kubernetes.io/proxy-body-size: "200m" tls: - secretName: <CERTIFICATE_NAME> hosts: - "your_domain_name"
Terminate TLS on the Load Balancer
If SSL termination is happening on a Load Balancer before traffic is forwarded to the Ingress, you’ll need to set the LABEL_STUDIO_HOST environment variable.
Update your ls-values.yaml
file with the LABEL_STUDIO_HOST environment variable like the following example. Replace "your_domain_name"
with your hostname.
global:
extraEnvironmentVars:
LABEL_STUDIO_HOST: https://your_domain_name