Install the Traefik (ingress-based) Load Balancer

The WebLogic Kubernetes Operator supports these load balancers: Traefik, NGINX, and Apache. Samples are provided in the documentation.

This Quick Start demonstrates how to install the Traefik ingress controller to provide load balancing for an Oracle SOA Suite domain.
  1. Create a namespace for Traefik:
    kubectl create namespace traefik 
  2. Set up Helm for 3rd party services:
    helm repo add traefik https://helm.traefik.io/traefik --force-update
    
  3. Install the Traefik operator in the traefik namespace with the provided sample values:
    cd ${WORKDIR}
    helm install traefik traefik/traefik \
     --namespace traefik \
     --values charts/traefik/values.yaml \
     --set "kubernetes.namespaces={traefik}" \
     --set "service.type=NodePort" \
     --wait