16 Installing and Configuring WebLogic Kubernetes Operator
The WebLogic Operator for Kubernetes facilitates the creation and management of WebLogic domains in a Kubernetes cluster.
The WebLogic Operator can manage several different domains in different namespaces. The WebLogic Operator for Kubernetes is installed in its own dedicated namespace.
This chapter includes the following topics:
- Setting Up a Product Specific Work Directory
Before you begin the installation, you must have downloaded and staged the Oracle Access Manager container image and the sample code repository. - Variables Used in this Chapter
The later sections of this chapter provide instructions to create a files. These sample files contain variables which you need to substitute with values applicable to your deployment. - Removing Existing Custom Resource Definitions
Remove any custom resource definitions for WebLogic, if they exist. - Installing the WebLogic Kubernetes Operator
The procedure to install the WebLogic Kubernetes Operator consists of creating a namespace and a Kubernetes service account. Start the operator after the installation.
Parent topic: Configuring the Enterprise Deployment
Setting Up a Product Specific Work Directory
Before you begin the installation, you must have downloaded and staged the Oracle Access Manager container image and the sample code repository.
See Identifying and Obtaining Software Distributions for an Enterprise Deployment.
You must also have deployed the Oracle WebLogic Operator as described in Installing the WebLogic Kubernetes Operator.
This section describes the procedure to copy the downloaded sample deployment scripts to a temporary working directory on the configuration host for OAM.
- Create a temporary working directory as the install user. The install
user should have
kubectl
access to the Kubenetes cluster.mkdir -p <WORKDIR>
For example:mkdir -p /workdir/OPER
- Change directory to this location:
cd /workdir/OPER
Note:
The same set of sample files are used by several products in this guide. To avoid having to download them each time, the files are staged in a non-product specific working directory.
The WebLogic Operator files are identical for Oracle Access Manager and Oracle Identity Governance. Therefore, you can use any version from the samples.
- Copy the sample scripts to the work
directory.
cp -R <WORKDIR>/fmw-kubernetes/OracleAccessManagement/kubernetes <WORKDIR>/samples
For example:cp -R /workdir/OPER/fmw-kubernetes/OracleAccessManagement/kubernetes /workdir/OPER/samples
Parent topic: Installing and Configuring WebLogic Kubernetes Operator
Variables Used in this Chapter
The later sections of this chapter provide instructions to create a files. These sample files contain variables which you need to substitute with values applicable to your deployment.
Variables are formatted as <VARIABLE_NAME>. The following table provides the values you should set for each of these variables.
Table 16-1 The Variables to be Changed
Variable | Sample Value | Description |
---|---|---|
<WORKDIR> |
|
The location where you want to create the working directory for the Kubernetes Operator. |
<OPERNS> |
|
The Kubernetes namespace to hold the Operator objects. |
<OPER_VER> |
|
The version of Kubernetes Operator. |
<OPER_ACT> |
|
The service account for Kubernetes Operator. |
<USE_ELK> |
|
Set to true if you are using Elasticsearch/Kibana monitoring. |
<ELK_PROTO> |
|
The |
<ELK_HOST> |
|
The host to which you want to send the Elasticsearch logs. This can be inside the Kubernetes cluster or external to it. |
<ELK_PORT> |
|
The Elasticsearch port used to receive the log information. |
<ELK_VER> |
|
The version of Elasticsearch you want to use. |
<REGISTRY_SECRET_NAME> |
|
The name of the Kubernetes secret containing the container registry credentials. Required only if you are pulling images directly from a container registry. See Creating a Container Registry Secret. |
<REGISTRY_ADDRESS> |
iad.ocir.io/<mytenancy> |
The location of the registry. If you use the Oracle
container registry, the value will be
|
<REG_USER> |
mytenancy/oracleidentitycloudservice/myemail@email.com |
The user id you use to log in to the registry. If you are use the Oracle container registry, this value will be your Oracle single sign-on user name. |
<REG_PWD> |
<password> |
The registry user password. |
Parent topic: Installing and Configuring WebLogic Kubernetes Operator
Removing Existing Custom Resource Definitions
Remove any custom resource definitions for WebLogic, if they exist.
kubectl get crd
NAME AGE
domains.weblogic.oracle 5d
kubectl delete crd domains.weblogic.oracle
customresourcedefinition.apiextensions.k8s.io "domains.weblogic.oracle" deleted
Parent topic: Installing and Configuring WebLogic Kubernetes Operator
Installing the WebLogic Kubernetes Operator
The procedure to install the WebLogic Kubernetes Operator consists of creating a namespace and a Kubernetes service account. Start the operator after the installation.
- Creating a Namespace
- Creating a Container Registry Secret
- Creating a Kubernetes Service Account
- Creating a Secret for Elasticsearch
- Installing and Starting the WebLogic Operator
- Updating the Elasticsearch Configuration
Parent topic: Installing and Configuring WebLogic Kubernetes Operator
Creating a Namespace
kubectl create namespace <OPERNS>
kubectl create namespace opns
namespace/opns created
Parent topic: Installing the WebLogic Kubernetes Operator
Creating a Container Registry Secret
If you are using your own container registry and want to pull the Oracle container images on demand, you must create a secret which contains the login details of the container registry.
If you have staged your container images locally or if you are pulling them from a public repository there is no need to run the following command.
Use the following command to create a container registry secret:
kubectl create secret -n <OPERNS> docker-registry <REGISTRY_SECRET_NAME> --docker-server=<REGISTRY_ADDRESS> --docker-username=<REG_USER> --docker-password=<REG_PWD>
For Example:
kubectl create secret -n opns docker-registry regcred --docker-server=iad.ocir.io/mytenancy --docker-username=mytenancy/oracleidentitycloudservice/myemail@email.com --docker-password=<password>
Parent topic: Installing the WebLogic Kubernetes Operator
Creating a Kubernetes Service Account
kubectl create serviceaccount -n <OPERNS> <OPER_ACT>
kubectl create serviceaccount -n opns operadmin
The output will look similar to the following:
serviceaccount/op-sa created
Parent topic: Installing the WebLogic Kubernetes Operator
Creating a Secret for Elasticsearch
If you are using Elasticsearch and your Elasticsearch requires connections to use SSL, then you must place the elasticsearch certificate in a Kubernetes secret.
kubectl cp <ELKNS>/elasticsearch-es-default-0:/usr/share/elasticsearch/config/http-certs/..data/ca.crt <WORKDIR>/ca.crt
If you are not using Elasticsearch inside Kubernetes, then you must copy the
ca.crt
file from your Elasticsearch installation to your
working directory.
kubectl create secret generic logstash-certs-secret --from-file=<WORKDIR>/ca.crt -n $<OPERNS>
Parent topic: Installing the WebLogic Kubernetes Operator
Installing and Starting the WebLogic Operator
Parent topic: Installing the WebLogic Kubernetes Operator
Updating the Elasticsearch Configuration
When the WebLogic Kubernetes Operator is deployed, it creates a configuration map
called weblogic-operator-logstash-cm
. This configuration map
contains the details of how Logstash sends logs to the Elasticsearch cluster. This
configuration map requires modifications for sending the logs successfully.
Parent topic: Installing the WebLogic Kubernetes Operator