This section provides information about how to install and configure the ingress-based Traefik load balancer (version 2.6.0 or later for production deployments) to load balance Oracle WebCenter Content domain clusters.
Follow these steps to set up Traefik as a load balancer for an Oracle WebCenter Content domain in a Kubernetes cluster:
Use Helm to install the Traefik (ingress-based) load balancer. For detailed information, see here.
Use the values.yaml
file in the sample but set kubernetes.namespaces
specifically.
$ cd ${WORKDIR}
$ kubectl create namespace traefik
$ helm repo add traefik https://helm.traefik.io/traefik --force-update
Sample output:
"traefik" has been added to your repositories
Install Traefik:
$ cd ${WORKDIR}
$ helm install traefik traefik/traefik \
--namespace traefik \
--values charts/traefik/values.yaml \
--set "kubernetes.namespaces={traefik}" \
--set "service.type=LoadBalancer" --wait
A sample values.yaml
for deployment of Traefik 2.6.0:
Verify the Traefik (load balancer) services:
Please note the EXTERNAL-IP of the traefik-operator service. This is the public IP address of the load balancer that you will use to access the WebLogic Server Administration Console and WebCenter Content URLs.
$ kubectl get service -n traefik
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
traefik LoadBalancer 10.96.8.30 123.456.xx.xx 9000:30734/TCP,30305:30305/TCP,30443:30443/TCP 6d23h
To print only the Traefik EXTERNAL-IP, execute this command:
$ TRAEFIK_PUBLIC_IP=`kubectl describe svc traefik --namespace traefik | grep Ingress | awk '{print $3}'`
$ echo $TRAEFIK_PUBLIC_IP
123.456.xx.xx
Verify the helm charts:
$ helm list -n traefik
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
traefik traefik 2 2022-09-11 12:22:41.122310912 +0000 UTC deployed traefik-10.24.3 2.8.5
Verify the Traefik status and find the port number
$ kubectl get all -n traefik
Configure Traefik to manage ingresses created in this namespace, where traefik
is the Traefik namespace and wccns
is the namespace of the domain:
$ helm upgrade traefik traefik/traefik --namespace traefik --reuse-values \
--set "kubernetes.namespaces={traefik,wccns}"
Create an ingress for the domain in the domain namespace by using the sample Helm chart. Here path-based routing is used for ingress.
Sample values for default configuration are shown in the file ${WORKDIR}/charts/ingress-per-domain/values.yaml
.
By default, type
is TRAEFIK
, tls
is Non-SSL
, and domainType
is wccinfra
. These values can be overridden by passing values through the command line or can be edited in the sample file values.yaml
based on the type of configuration (non-SSL or SSL).
If needed, you can update the ingress YAML file to define more path rules (in section spec.rules.host.http.paths
) based on the domain application URLs that need to be accessed. The template YAML file for the Traefik (ingress-based) load balancer is located at ${WORKDIR}/charts/ingress-per-domain/templates/traefik-ingress.yaml
Install ingress-per-domain
using Helm for non-SSL configuration:
$ export LB_HOSTNAME=<Traefik load balancer DNS name>
#OR leave it empty to point to Traefik load-balancer IP, by default
$ export LB_HOSTNAME=''
Note: Make sure that you specify DNS name to point to the Traefik load balancer hostname, or leave it empty to point to the Traefik load-balancer IP.
$ cd ${WORKDIR}
$ helm install wcc-traefik-ingress \
charts/ingress-per-domain \
--set type=TRAEFIK \
--namespace wccns \
--values charts/ingress-per-domain/values.yaml \
--set "traefik.hostname=$LB_HOSTNAME" \
--set tls=NONSSL
Sample output:
NAME: wcc-traefik-ingress
LAST DEPLOYED: Sun Jan 17 23:49:09 2021
NAMESPACE: wccns
STATUS: deployed
REVISION: 1
TEST SUITE: None
For secured access (SSL) to the Oracle WebCenter Content application, create a certificate :
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /tmp/tls1.key -out /tmp/tls1.crt -subj "/CN=<Traefik load balancer DNS name>"
#OR use the following command if you chose to leave LB_HOSTNAME empty in the previous step
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /tmp/tls1.key -out /tmp/tls1.crt -subj "/CN=*"
Note: Make sure that you specify DNS name to point to the Traefik load balancer hostname.
Generate a Kubernetes secret:
$ kubectl -n wccns create secret tls domain1-tls-cert --key /tmp/tls1.key --cert /tmp/tls1.crt
Create Traefik Middleware custom resource
In case of SSL termination, Traefik must pass a custom header WL-Proxy-SSL:true
to the WebLogic Server endpoints. Create the Middleware using the following command:
$ cat <<EOF | kubectl apply -f -
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
name: wls-proxy-ssl
namespace: wccns
spec:
headers:
customRequestHeaders:
WL-Proxy-SSL: "true"
EOF
Create the Traefik TLSStore custom resource.
In case of SSL termination, Traefik should be configured to use the user-defined SSL certificate. If the user-defined SSL certificate is not configured, Traefik will create a default SSL certificate. To configure a user-defined SSL certificate for Traefik, use the TLSStore custom resource. The Kubernetes secret created with the SSL certificate should be referenced in the TLSStore object. Run the following command to create the TLSStore:
$ cat <<EOF | kubectl apply -f -
apiVersion: traefik.containo.us/v1alpha1
kind: TLSStore
metadata:
name: default
namespace: wccns
spec:
defaultCertificate:
secretName: domain1-tls-cert
EOF
Install ingress-per-domain
using Helm for SSL configuration.
The Kubernetes secret name should be updated in the template file.
The template file also contains the following annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
traefik.ingress.kubernetes.io/router.middlewares: wccns-wls-proxy-ssl@kubernetescrd
The entry point for SSL access and the Middleware name should be updated in the annotation. The Middleware name should be in the form <namespace>-<middleware name>@kubernetescrd
.
$ cd ${WORKDIR}
$ helm install wcc-traefik-ingress \
charts/ingress-per-domain \
--set type=TRAEFIK \
--namespace wccns \
--values charts/ingress-per-domain/values.yaml \
--set "traefik.hostname=$LB_HOSTNAME" \
--set "traefik.hostnameorip=$TRAEFIK_PUBLIC_IP" \
--set tls=SSL
Sample output:
NAME: wcc-traefik-ingress
LAST DEPLOYED: Mon Jul 20 11:44:13 2020
NAMESPACE: wccns
STATUS: deployed
REVISION: 1
TEST SUITE: None
Get the details of the services by the above deployed ingress:
$ kubectl describe ingress wccinfra-traefik -n wccns
To confirm that the load balancer noticed the new ingress and is successfully routing to the domain server pods, you can send a request to the URL for the “WebLogic ReadyApp framework”, which should return an HTTP 200 status code, as follows:
$ curl -v http://${LOADBALANCER_HOSTNAME}:${LOADBALANCER_PORT}/weblogic/ready
* About to connect() to abc.com port 30305 (#0)
* Trying 100.111.156.246...
* Connected to abc.com (100.111.156.246) port 30305 (#0)
> GET /weblogic/ready HTTP/1.1
> User-Agent: curl/7.29.0
> Host: domain1.org:30305
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 0
< Date: Thu, 03 Dec 2020 13:16:19 GMT
< Vary: Accept-Encoding
<
* Connection #0 to host abc.com left intact
Use Helm to install the Traefik (ingress-based) load balancer. For detailed information, see here.
Use the values.yaml
file in the sample but set kubernetes.namespaces
specifically.
$ cd ${WORKDIR}
$ kubectl create namespace traefik
$ helm repo add traefik https://helm.traefik.io/traefik --force-update
Sample output:
"traefik" has been added to your repositories
Install Traefik:
$ cd ${WORKDIR}
$ helm install traefik traefik/traefik \
--namespace traefik \
--values charts/traefik/values.yaml \
--set "kubernetes.namespaces={traefik}" \
--set "service.type=LoadBalancer" \
--wait
Verify the Traefik operator status and find the port number of the SSL and non-SSL services:
$ kubectl get all -n traefik
Configure Traefik to manage the domain application service created in this namespace, where traefik
is the Traefik namespace and wccns
is the namespace of the domain:
$ helm upgrade traefik traefik/traefik --namespace traefik --reuse-values \
--set "kubernetes.namespaces={traefik,wccns}"
To enable SSL passthrough in Traefik, you can configure a TCP router.
A sample YAML for IngressRouteTCP
is available at ${WORKDIR}/charts/ingress-per-domain/tls/traefik-tls.yaml
.
Note: There is a limitation with load-balancer in end-to-end SSL configuration - accessing multiple types of servers (different Managed Servers and/or Administration Server) at the same time, is currently not supported. we can access only one managed server at a time.
The following should be updated in traefik-tls.yaml
:
HostSNI
rule.Sample traefik-tls.yaml
:
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: wcc-ucm-routetcp
namespace: wccns
spec:
entryPoints:
- websecure
routes:
- match: HostSNI(`<Traefik load balancer DNS name>`)
services:
- name: wccinfra-cluster-ucm-cluster
port: 16201
weight: 3
terminationDelay: 400
tls:
passthrough: true
Note: Make sure that you specify DNS name to point to the Traefik load balancer hostname, or specify ‘*’ to point to the Traefik load balancer IP.
cd ${WORKDIR}/charts/ingress-per-domain/tls
$ kubectl apply -f traefik-tls.yaml
With the load-balancer configured, please create your domain by following the instructions documented in Create Oracle WebCenter Content domains, before verifying domain application URL access.
After setting up the Traefik (ingress-based) load balancer, verify that the domain application URLs are accessible through the load balancer port 30305
for HTTP access. The sample URLs for Oracle WebCenter Content domain of type wcc
are:
http://${TRAEFIK_PUBLIC_IP}:30305/weblogic/ready
http://${TRAEFIK_PUBLIC_IP}:30305/console
http://${TRAEFIK_PUBLIC_IP}:30305/cs
http://${TRAEFIK_PUBLIC_IP}:30305/ibr
http://${TRAEFIK_PUBLIC_IP}:30305/imaging
http://${TRAEFIK_PUBLIC_IP}:30305/dc-console
http://${TRAEFIK_PUBLIC_IP}:30305/wcc
After setting up the Traefik (ingress-based) load balancer, verify that the domain applications are accessible through the SSL load balancer port 30443
for HTTPS access. The sample URLs for Oracle WebCenter Content domain are:
LOADBALANCER-SSLPORT is 30443
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/console
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/cs
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/ibr
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/imaging
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/dc-console
https://${LOADBALANCER_HOSTNAME}:${LOADBALANCER-SSLPORT}/wcc
$ helm delete wcc-traefik-ingress -n wccns
$ helm delete traefik -n wccns
$ kubectl delete namespace traefik