Scale reliably with fully integrated
Load Balancers

TCP and HTTP load balancers integrated into Kubernetes. Deploy seemlessly using Kubernetes Services.

Fully integrated

External load balancers with a publicly routable IPv4 address are automatically created when you define a Kubernetes Service with type LoadBalancer.

apiVersion: v1
kind: Service
metadata:
  name: my-load-balancer
spec:
  selector:
    app: my-backend
  ports:
    - port: 8765
      targetPort: 9376
  type: LoadBalancer
  • Built in health checks

    Symbiosis monitors your targets and only routes traffic to healthy nodes.

  • Up to 10,000 concurrent connections

    Avoid bottlenecks by balancing your traffic with up to 10,000 connections at once.

  • Highly available

    Traffic automatically fails over to alternate instances in case of an outage.

Documentation

Read our tutorial on how to set up and configure load balancers in your Kubernetes clusters.