10 Frequently Asked Questions
Overriding tuning parameters is not supported using configuration overrides
The WebLogic Kubernetes Operator enables you to override some of the domain configuration using configuration overrides (also called situational configuration). See supported overrides. Overriding the tuning parameters such as MaxMessageSize and PAYLOAD, for Oracle SOA Suite domains is not supported using the configuration overrides feature. However, you can override them using the following steps:
-
Specify the new value using the environment variable
K8S_REFCONF_OVERRIDES
inserverPod.env
section indomain.yaml
configuration file (example path: <domain-creation-output-directory>/weblogic-domains/soainfra/domain.yaml) based on the servers to which the changes are to be applied. For example, to override the value at the Administration Server pod level:spec: adminServer: serverPod: env: - name: K8S_REFCONF_OVERRIDES value: "-Dweblogic.MaxMessageSize=78787878" - name: USER_MEM_ARGS value: '-Djava.security.egd=file:/dev/./urandom -Xms512m -Xmx1024m ' serverStartState: RUNNING
For example, to override the value at a specific cluster level (soa_cluster or osb_cluster):
apiVersion: "weblogic.oracle/v1" kind: Cluster metadata: name: soainfra-soa-cluster # Update this with the namespace your domain will run in: namespace: soans labels: # Update this with the `domainUID` of your domain: weblogic.domainUID: soainfra spec: clusterName: soa_cluster serverService: precreateService: true serverPod: env: - name: K8S_REFCONF_OVERRIDES value: "-Dsoa.payload.threshold.kb=102410"
Note:
When multiple system properties are specified for
, make sure each system property is separated by a space.serverPod.env.value
-
Apply the updated
file:domain.yaml
kubectl apply -f domain.yaml
Note:
Note: The server pod(s) will be automatically restarted (rolling restart).
Enterprise Manager Console may display ADF_FACES-30200 error
In an Oracle SOA Suite environment deployed using the operator, the Enterprise Manager Console may intermittently display the following error when the domain servers are restarted:
ADF_FACES-30200: For more information, please see the server's error log for an entry beginning with: The UIViewRoot is null. Fatal exception during PhaseId: RESTORE_VIEW 1.
You can refresh the Enterprise Manager Console URL to successfully log in to the Console.
Configure the external URL access for Oracle SOA Suite composite applications
For Oracle SOA Suite composite applications to access the external URLs over the internet (if your cluster is behind a http proxy server), you must configure the following proxy parameters for Administration Server and Managed Server pods.
-Dhttp.proxyHost=www-your-proxy.com
-Dhttp.proxyPort=proxy-port
-Dhttps.proxyHost=www-your-proxy.com
-Dhttps.proxyPort=proxy-port
-Dhttp.nonProxyHosts="localhost|soainfra-adminserver|soainfra-soa-server1|soainfra-osb-server1|...soainfra-soa-serverN|*.svc.cluster.local|*.your.domain.com|/var/run/docker.sock"
To do this, edit the domain.yaml
configuration file and append the
proxy parameters to the spec.serverPod.env.JAVA_OPTIONS
environment
variable value.
For example:
serverPod:
env:
- name: JAVA_OPTIONS
value: -Dweblogic.StdoutDebugEnabled=false -Dweblogic.ssl.Enabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dhttp.proxyHost=www-your-proxy.com -Dhttp.proxyPort=proxy-port -Dhttps.proxyHost=www-your-proxy.com -Dhttps.proxyPort=proxy-port -Dhttp.nonProxyHosts="localhost|soainfra-adminserver|soainfra-soa-server1|soainfra-osb-server1|...soainfra-soa-serverN|*.svc.cluster.local|*.your.domain.com|/var/run/docker.sock"
- name: USER_MEM_ARGS
value: '-Djava.security.egd=file:/dev/./urandom -Xms256m -Xmx1024m '
volumeMounts:
Note:
The-Dhttp.nonProxyHosts
parameter must have the pod names of
the Administration Server and each Managed Server. For example:
soainfra-adminserver
, soainfra-soa-server1
,
soainfra-osb-server1
, and so on.
Apply the updated domain.yaml
file:
$ kubectl apply -f domain.yaml
Note:
The server pod(s) will be automatically restarted (rolling restart).Configure the external access for the Oracle Enterprise Scheduler WebServices WSDL URLs
In an Oracle SOA Suite domain deployed including the Oracle Enterprise Scheduler
(ESS) component, the following ESS WebServices WSDL URLs shown in the table format
in the ess/essWebServicesWsdl.jsp
page are not reachable outside
the Kubernetes cluster.
ESSWebService
EssAsyncCallbackService
EssWsJobAsyncCallbackService
Follow these steps to configure the external access for the Oracle Enterprise Scheduler WebServices WSDL URLs:
- Log in to the WebLogic Remote Console URL and connect to the Administration Server.
- In the Home Page, click Clusters. Then click the soa_cluster.
- Click the HTTP tab and then click Lock & Edit in the Change Center panel.
- Update the following values:
- Frontend Host: host name of the load balancer. For example, domain1.example.com.
- Frontend HTTP Port: load balancer port. For example, 30305.
- Frontend HTTPS Port: load balancer https port. For example, 30443.
- Click Save.
- Click Activate Changes in the Change Center panel.
- Restart the servers using `domain-lifecycle` [scripts] in the SOA cluster. For more information, refer Restart the servers .
Note:
Do not restart servers from the Remote Console.WebLogic Kubernetes Operator FAQs
See the general frequently asked questions for using the WebLogic Kubernetes Operator.