From cf0adb938855cebd25f7dfb269943b2c94a1e8f2 Mon Sep 17 00:00:00 2001 From: Ashageetha Rao Date: Fri, 6 Sep 2024 11:38:14 +0000 Subject: [PATCH] Oracle SOA Suite release 24.3.2 documentation updates --- .../installguide/create-soa-domains/_index.md | 11 ++-- .../prepare-your-environment/_index.md | 6 +- docs/24.3.2/404.html | 14 ++--- docs/24.3.2/categories/index.html | 48 +++++++-------- docs/24.3.2/index.html | 48 +++++++-------- docs/24.3.2/index.json | 4 +- .../configure-load-balancer/apache/index.html | 48 +++++++-------- .../configure-load-balancer/index.html | 48 +++++++-------- .../configure-load-balancer/nginx/index.html | 48 +++++++-------- .../traefik/index.html | 48 +++++++-------- .../index.html | 48 +++++++-------- .../deploy-artifacts/index.html | 48 +++++++-------- .../deploy-using-maven-ant/index.html | 48 +++++++-------- .../deploying-composites/index.html | 48 +++++++-------- .../supportjdev/index.html | 48 +++++++-------- .../enable-additional-url-access/index.html | 48 +++++++-------- .../adminguide/enablingt3/index.html | 48 +++++++-------- docs/24.3.2/soa-domains/adminguide/index.html | 48 +++++++-------- .../monitoring-soa-domains/index.html | 48 +++++++-------- .../performing-wlst-operations/index.html | 48 +++++++-------- .../index.html | 48 +++++++-------- .../appendix/docker-k8s-hardening/index.html | 48 +++++++-------- docs/24.3.2/soa-domains/appendix/index.html | 48 +++++++-------- .../quickstart-deployment-on-prem/index.html | 48 +++++++-------- .../soa-cluster-sizing-info/index.html | 48 +++++++-------- .../cleanup-domain-setup/index.html | 48 +++++++-------- .../create-or-update-image/index.html | 48 +++++++-------- docs/24.3.2/soa-domains/edg-guide/index.html | 48 +++++++-------- .../edg-guide/setup-edg/index.html | 48 +++++++-------- .../soa-domains/edg-guide/topology/index.html | 48 +++++++-------- docs/24.3.2/soa-domains/faq/index.html | 48 +++++++-------- docs/24.3.2/soa-domains/index.html | 48 +++++++-------- .../create-soa-domains/index.html | 60 +++++++++---------- .../soa-domains/installguide/index.html | 48 +++++++-------- .../prepare-your-environment/index.html | 54 ++++++++--------- .../installguide/prerequisites/index.html | 48 +++++++-------- .../soa-domains/patch_and_upgrade/index.html | 48 +++++++-------- .../patch-an-image/index.html | 48 +++++++-------- .../upgrade-k8s-cluster/index.html | 48 +++++++-------- .../upgrade-operator-release/index.html | 48 +++++++-------- .../soa-domains/release-notes/index.html | 48 +++++++-------- .../soa-domains/troubleshooting/index.html | 48 +++++++-------- docs/24.3.2/tags/index.html | 48 +++++++-------- .../installguide/create-soa-domains/_index.md | 11 ++-- .../prepare-your-environment/_index.md | 6 +- 45 files changed, 968 insertions(+), 974 deletions(-) diff --git a/docs-source/content/soa-domains/installguide/create-soa-domains/_index.md b/docs-source/content/soa-domains/installguide/create-soa-domains/_index.md index 2ad3f9f4c..5c4553589 100644 --- a/docs-source/content/soa-domains/installguide/create-soa-domains/_index.md +++ b/docs-source/content/soa-domains/installguide/create-soa-domains/_index.md @@ -28,7 +28,7 @@ provide in this file. #### Configuration parameters The following parameters can be provided in the inputs file. ->**Note**: In versions 24.3.2 and above, the default ports used to create the domain are updated. +>**Note**: In versions 24.2.2 and above, the default ports used to create the domain are updated. | Parameter | Definition | Default | | --- | --- | --- | @@ -114,12 +114,11 @@ The script will perform the following steps: #### Start the domain -The `domain.yaml` created by `create-domain.sh` script above has details about the Oracle SOA Suite Domain and Cluster Kubernetes resources. You can create Oracle SOA Suite Domain using the `kubectl create -f` - or `kubectl apply -f` command: +The `domain.yaml` created by `create-domain.sh` script above has details about the Oracle SOA Suite Domain and Cluster Kubernetes resources. You can create Oracle SOA Suite Domain using the `kubectl create -f` or `kubectl apply -f` command: - ``` - $ kubectl apply -f /weblogic-domains//domain.yaml - ``` +``` +$ kubectl apply -f /weblogic-domains//domain.yaml +``` The default domain created by the script has the following characteristics: diff --git a/docs-source/content/soa-domains/installguide/prepare-your-environment/_index.md b/docs-source/content/soa-domains/installguide/prepare-your-environment/_index.md index cdde0b27c..07e46f773 100644 --- a/docs-source/content/soa-domains/installguide/prepare-your-environment/_index.md +++ b/docs-source/content/soa-domains/installguide/prepare-your-environment/_index.md @@ -127,15 +127,15 @@ If you want to build and use an Oracle SOA Suite Docker image with any additiona ### Install the WebLogic Kubernetes Operator -The WebLogic Kubernetes Operator supports the deployment of Oracle SOA Suite domains in the Kubernetes environment. Follow the steps in [this document](https://github.com/oracle/weblogic-kubernetes-operator/blob/v4.2.4/documentation/site/content/quickstart/install.md#install-the-operator) to install the operator. +The WebLogic Kubernetes Operator supports the deployment of Oracle SOA Suite domains in the Kubernetes environment. Follow the below steps to install the operator. > Note: Optionally, you can follow [these steps](https://oracle.github.io/weblogic-kubernetes-operator/samples/elastic-stack/operator/) to send the contents of the operator's logs to Elasticsearch. In the following example commands to install the WebLogic Kubernetes Operator, `opns` is the namespace and `op-sa` is the service account created for the operator: ``` $ kubectl create namespace opns - $ kubectl create serviceaccount -n opns op-sa + $ kubectl create serviceaccount -n opns op-sa $ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts --force-update - $ helm install weblogic-kubernetes-operator weblogic-operator/weblogic-operator --set version=4.2.4 --namespace opns --set serviceAccount=op-sa --set "javaLoggingLevel=FINE" --wait + $ helm install weblogic-kubernetes-operator weblogic-operator/weblogic-operator --set version=4.2.4 --namespace opns --set serviceAccount=op-sa --set "javaLoggingLevel=FINE" --wait ``` This Helm release deploys the operator with the default behavior of managing Oracle SOA Suite domains in all Kubernetes namespaces with the label `weblogic-operator=enabled`. diff --git a/docs/24.3.2/404.html b/docs/24.3.2/404.html index 50c888acf..af56f5d90 100644 --- a/docs/24.3.2/404.html +++ b/docs/24.3.2/404.html @@ -9,13 +9,13 @@ 404 Page not found - - - - - - - + + + + + + +