Skip to content

OWLS-76347 New sample scripts to manage DB service and RCU Schema #1217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 28, 2019

Conversation

anpanigr
Copy link
Member

Create a new script directory to manage Oracle DB and RCU schema. Following convenient scripts are added into a new directory (create-rcu-schema) under wblogic-kubernetes-operator/kubernetes/samples/scripts

a. start-db-service.sh
b. stop-db-service.sh
c. create-rcu-schema.sh
d. drop-rcu-schema.sh

User can invoke the requited scripts to before invoking create-domain.sh in create-fmw-infrastructure-domain directory as a per-requisite. No need to copy-n-paste the yaml file/script from the user guide to have a OOTB experience with FMW Infrastructure Domain

Copy link
Member

@rosemarymarano rosemarymarano left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some edits

@@ -0,0 +1,200 @@
# Creating Oracle DB service and RCU Schema for a Fusion Middleware domain

This sample demonstrates how to create a Oracle DB service on Kubernetes clusterand create RCU schema on the Oracle DB being used by Fusion Middleware domain.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how to create a Oracle DB -> how to create an Oracle DB
on Kubernetes clusterand -> on a Kubernetes cluster and
by Fusion Middleware domain. -> by a Fusion Middleware domain.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Modify the doc as per suggestion

@anpanigr
Copy link
Member Author

anpanigr commented Aug 28, 2019

All the JRF Tests are passing on the branch

@rjeberhard rjeberhard merged commit cd98a83 into develop Aug 28, 2019
@anpanigr anpanigr deleted the OWLS-76347 branch August 29, 2019 04:00

This sample demonstrates how to create an Oracle DB service on Kubernetes cluster and create RCU schema on the Oracle DB being used by a Fusion Middleware domain.

The directory contains the following sample scripts to start an Oracle DB service in default namespace, stop the Oracle DB service, create an RCU schema and drop the RCU schema
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is confusing, I would turn this into a bulleted list so it is clearer that these are four separate examples

@@ -0,0 +1,200 @@
# Creating Oracle DB service and RCU Schema for a Fusion Middleware domain

This sample demonstrates how to create an Oracle DB service on Kubernetes cluster and create RCU schema on the Oracle DB being used by a Fusion Middleware domain.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on Kubernetes -> in a Kubernetes
and create -> and how to create
schema on the -> schema in the
being used by -> that will be used by

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Re-worded as follows ...
The sample scripts in this directory demonstrates how to

  • start an Oracle DB service in a Kubernetes cluster
  • stop an Oracle DB service in a Kubernetes cluster
  • create RCU schema in the Oracle DB that will be used by a Fusion Middleware domain.
  • delete RCU schema in the Oracle DB used by a Fusion Middleware domain.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sample scripts in this directory demonstrates how to:
* Start an Oracle DB service in a Kubernetes cluster.
* Stop an Oracle DB service in a Kubernetes cluster.
* Create the RCU schema in the Oracle DB that will be used by a Fusion Middleware domain.
* Delete the RCU schema in the Oracle DB used by a Fusion Middleware domain.

The directory contains the following sample scripts to start an Oracle DB service in default namespace, stop the Oracle DB service, create an RCU schema and drop the RCU schema

```
$ ./start-db-service.sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is no explanation of what this is, what directory it is in, etc. ???

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

surely it needs some parameters or an imagePullSecret or something? you need to authenticate to pull that image don't you?

Copy link
Member Author

@anpanigr anpanigr Aug 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The scripts in the new directory create-rcu-schema is based on the document as described in https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/fmw-infra/

Here we create convenient scripts out of the above document so that user has not to cut-n-paste the document every-time. I copied the db service/deployment yaml file from this document (which does not have imagePullSecret) The pre-requisite is that customer has to docker login into container-registry.oracle.com and download DB-slim and fmw-infra images. I can put this information on the main page w/o adding imagePullSecret in oradb.yaml

Alternatively I can check the result for docker pull command and provide the suggested action as follows e.g. in start-db-service.sh

ocr_pfx=container-registry.oracle.com
db_image=${ocr_pfx}/database/enterprise:12.2.0.1-slim
docker pull ${db_image}
if [ $? != 0 ]; then
echo "[ERROR] Could not pull ${db_image}";
echo "Please run [ docker login ${ocr_pfx} ] and "
echo "Check-out the db image (if needed)"
exit -1;
fi


```
-p external NodePort for the Service (default is 30011)
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there are two code blocks right next to each other with no text between them, either combine them, or put some text in between

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"external" is redunant - nodePorts are always external

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the word external as follows ....

$ ./start-db-service.sh -h
usage: start-db-service.sh -p [-h]
-p DB Service NodePort (optional)
(default: 30011)
-h Help

-p external NodePort for the Service (default is 30011)
```
```
The script create a Oracle DB Service in default Namesapce with default Credential that comes with the Oracle Database Slim image.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The script create a -> This script creates an
Namespace is spelled wrong
Credential should not have capial

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The script creates an Oracle DB Service in default namespace with default credential that comes with the Oracle Database Slim image.

if [ -z ${nodeport} ]; then
nodeport=30011
fi

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove extra blank line


ocr_pfx=container-registry.oracle.com
db_image=${ocr_pfx}/database/enterprise:12.2.0.1-slim
docker pull ${db_image}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

authentication?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now I check the result for docker pull command and provide the suggested action as follows e.g. in start-db-service.sh

ocr_pfx=container-registry.oracle.com
db_image=${ocr_pfx}/database/enterprise:12.2.0.1-slim
docker pull ${db_image}
if [ $? != 0 ]; then
echo "[ERROR] Could not pull ${db_image}";
echo "Please run [ docker login ${ocr_pfx} ] and "
echo "Check-out the db image (if needed)"
exit -1;
fi


kubectl apply -f ${scriptDir}/common/oradb.yaml
# Modify the NodePort based on input
sed -i -e "s?nodePort:.*?nodePort: ${nodeport}?g" ${scriptDir}/common/orasvc.yaml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is a nit, but the general convention is to use slash as the sed delimiter unless there is some reason to not use it

@@ -0,0 +1,18 @@
#!/bin/bash
# Copyright 2018, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong year

Copy link
Member Author

@anpanigr anpanigr Aug 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Modified all the checked-in files with following line

Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.

scriptDir="$( cd "$( dirname "${script}" )" && pwd )"

dbpod=`kubectl get po | grep oracle-db | cut -f1 -d " " `
kubectl delete -f ${scriptDir}/common/oradb.yaml --ignore-not-found
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the script is called "stop" but you are deleting - seems wrong - rename script?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here I stop the service by internally deleting the kubernate service. Start/Stop Service also complements each other with reverse action.

rjeberhard added a commit that referenced this pull request Nov 16, 2019
* Rebuilt charts

* OWLS-76347 New sample scripts to manage DB service and RCU Schema (#1217)

* OWLS-76347 New sample scripts to manage DB service and RCU Schema

* eliminate duplication logger creation (#1225)

* merge 1241 into develop

* QUICKTEST and FULLTEST categorization  (#1237)

* test categorization into quicktest,fulltest, nightly

* fix quicktest

* fix typo

* fix sitconfig tests

* fix nightly

* remove fulltest

* remove fulltest

* remove smoketest which is not used

* change profile name

* triage external jenkins failures

* use operator image env vars for target op release

* run JRF test in nightly

* default quicktest true

* add retry for PV dir creation

* rename nightly to fulltest

* fulltest condition change

* fix compilation error

* readme and usecases updated

* readme updated

* adding domain in image wdt test to quicktest

* fix pv dir creation retry

* changed profile name

* OWLS-74959 - Validate FMW Infrastructure uses configured clusters in introspector job (#1230)

* validate FMW infrastructure domain cannot use dynamic clusters

* add missing namespaces to kubectl commands

* namespace

* rename ALLOW_DYNAMIC_IN_FMW_INFRA env var

* support testing for invalid domain testing

* fix env var name in validation error message

* Integration tests should take the env variable for WDT version to download (#1242)

* adding support to take WDT_VERSION env var

* remove commented code

* fix extra space

* Prepare for operator 2.3.1

* Revert "eliminate duplication logger creation (#1225)"

This reverts commit 218331d.

* WIP Added test to cover weblogicLoggingExporterFilters (#1211)

* Added test to cover weblogicLoggingExporterFilters jenkins-ignore

* Resolve CheckStyle issues

* merge 1246 changes from master

* Move to Kubernetes Java Client 6.0.1 (#1249)

* Use Kubernetes Java client 6.0.1

* Update domain status on Unprocessable Error (#1250)

* Update domain status on Unprocessable Error

* Set domain status when job creation fails with unprocessable entity

* OWLS-76624 (Resolves #1228) - Introspector pod not picking up the container context from the domain resource (#1247)

* support container and pod securityContext in introspector job. Code refactoring

* unit tests

* unit test

* minor cleanups

* merge conflicts

* unused imports

* cleanup import ordering

* CheckStyle corrections

* K8s service account (#1235)

* add service account to serverpod

* OWLS-73891 part 1: update warning messages and fix a helm upgrade issue (#1253)

* OWLS-73891 part 1 - fix stale domain watcher and add namespace in security check warning messages

* More cleanup of stale states associated with a recreated namespace

* Add REST resource annotion to ignore unknown properties (#1255)

* Simplify WaitForReadyStep (#1256)

* OWLS-76720 (Resolves #1198) - Fixes missing valueFrom envVar values (#1254)

* fixes missing valueFrom to env var

* Fix Javadoc and CheckStyle

* Revert pod watcher refactoring

* merge 1258 into develop

* OWLS-76780 : Modify FMW (domain-in-image) sample to support Restricted JRF Domain (#1263)

* OWLS-76806 (Resolves #1231) - scripts such as livenessProbe.sh should use JAVA_HOME if set (#1262)

* Prepend PATH with JAVA_HOME/bin before calling jps

* comment

* append only if JAVA_HOME/bin not already in PATH

* Reduced execution time, added support to execute against different versions of Grafana, Prom, WDT, monitoring exporter (#1265)

* modified the tests to improve exec time

* modified tests to improve perfomance

* added wait time for mysql creation

* corrected chart version for prom

* fixed typo

* added version choice for monexp

* add code cleanup

* remove not needed files

* fixed typo

* added suport for downloading monexp instead of building

* added prom,grafana, monexp as env var option

* fixed typo

*  fixed env setting

* added some debug

* WDT version 1.4.0 (#1267)

* WDT version 1.4.0

* OWLS-76949 added support for exposeAdminT3Channel in FMWDomain in domain-in-image model

* merge 1268 from master

* typo

* Modify sample scripts for RCU and DB Creation (#1238)

* Modification based on Mark's Comment

* Missiing typo correction

* Addded ImagePullSecret to Oracle and RCU pod

* Modify the default image pull secret name to docker-store to match with java integration default

* Missing modified file

* Modified the usage command

* Resolution to Review comments from Ryan

* edited README

* minor clean up

* Modified the cpu limit

* Soa 2.2.1 (#1243)

* Adding pv pvc config files for database

* Adding soa domain creation scripts/files

* Added database configuration yaml files

* Add files via upload

Adding SOA ESS changes

* Delete createFMWDomain.py

* Delete db-pv.yaml

* Delete db-pvc.yaml

* Create db-with-pv.yaml

* Create db-without-pv.yaml

* Delete db-with-pv.yaml

* Delete db-without-pv.yaml

* integrated soa ess osb changes from SOA dev team

* fixing indentation problem for bug 30158564

* added execute permissions for create-domain script

* Update db-without-pv.yaml

* Add files via upload

* Delete create-domain.sh

* Add files via upload

* updates for precreateService and osb_cluster

* removing extra characters if any

* fixing permission issue for create-domain.sh

* removed commented blocks and updated copyright

* added exec permissions for the scripts

* Updated description for domainType input

* Update create-domain-inputs.yaml

* corrected domain value

* corrected domain value

* corrected domain value

* removed precreateService in domain template

removed precreateService from serverpod and cluster definition

* removed soa domain related changes

removed soa domain related changes here. will be moving it to create-domain.sh script which is under soa samples.

* soa specific changes in domain.yaml

* removed extra line

* removing extra line

* removed pv pvc scripts

* enable checkstyle on test sources (#1270)

* Update license format (#1272)

* fix typo in License.txt - matches https://oss.oracle.com/licenses/upl/ (#1278)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support (#1106)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support

* incorporate first set of code review comments

* Update description of dataHome and remove dead code based on code review

* update the documentation so that it covers dataHome

* add DOMAIN_UID to persistent store directory path to distinguish different domains

* Create symbolic link from DOMAIN data dir to data home directory during server startup

* Changes based on review by Tom Barnes

* Update integration-test to verify centralized dataHome location of default and custom file stores

* another revision based on Tom Barnes review

* add env vars to wl-pod.yamlt for new env variable which disables symbolic link support for server's default data directory

* refactor symbolic link support to utils.sh and mark the feature as experimental

* updated descripton of experimental symbolic link support

* put local createFolder in introspectDomain.sh and moved pipefail to script scope in utils.sh

* Add unit tests for verifying dataHome env in WLS server pods

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* OWLS-73891 part2 - clean up stale states about introspector jobs

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add unit test

* Retry and wait between retries of failed downloads jenkins-ignore (#1266)

* Retry and wait between retries of failed downloads jenkins-ignore

* Added loop to wget jar files jenkins-ignore

* Reduced wget retry times since wget is in a loop now jenkins-ignore

*  add note to advise against using console for starting and stopping servers

* Revert "OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)"

This reverts commit 8b46f0c.

* Fix CheckStyle

* Add instructions to configure fluentd to export domain logs to ELK (#1281)

* adding sample help for configuring fluentd sidecar

* change org structure

* initial round of minor edits

* more backticks

* added some more explanation

* updates for Rosemary's feedback

* more updates for Rosemary's feedback

* update samples overview

* updates to Mark's comments

* more edits based on feedback

* fix Managed coherence test (#1279)

* Refactor managed coherence test and add error checking to avoid false postives

* revert chenages to Domain.java

* fix error reported by check style audit

* incorporating review comments

* run integration test in openshift (#1280)

* changes required to run ItOperator test in opneshift

* updates for running ItOperator on openshift

* run integration tests in openshift

* fix check style errors

* incorporating review comments

* merge 1285 from master

* merge 1282 from master

* PR: owls-77057 fix nightly full test failure for changing image test of ItPodsRestart (#1289)

* setMaxIterationsPod(40) for ItPodRestart

* setMaxIterationsPod(40) for ItPodRestart

* Added container name when copying archive files jenkins-ignore (#1288)

* Added container name when copying archive files jenkins-ignore

* Added try catch jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* merge 1291 from master

* OWLS-76832 (Resolves #1232) - Error using variable in pod template if value has underscore (#1286)

* convert substituted variables to DNS1123 if used as names

* only convert variables for selected, customizable list of fields

* checkstyle fixes

* add dns1123Fields to helm chart to override default list of field names that requires dns-1123 values

* document dns1123fields

* dns1123Names values no longer case sensitive

* minor cleanup

* doc update base on feedback

* merge 1292 from master

* OWLS-73891 part3 - add FAQ entry for managing namespaces (#1264)

* Add FAQ documentation for managing namespaces

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a minor typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix format

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More format changes

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Correct the wrong example job output

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More fine tuning of the contents

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* One more cross-reference

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add links to inidivual sections and add a section for getting the domainNamespaces value

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* incorprate edits

* Adjust cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Timestamp

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Reword the last section about restart operator pod

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Simplify WaitForReady step (#1277)

* Simply WaitForReady step

* checkstyle for copyright

* Modified rcu script to support both SOA and FMWInfra Domain (#1290)

* Modified rcu script to support both SOA and FMWInfra Domain

* Fixed few typo on the script as per Review Comment

* Add SOA user doc (#1229)

* WIP: Add SOA user doc

* update link to SAO sample

* fix broken x-refs due to updated directory structure

* incorporate Samba edits

* incorprated updates

* MARK: add disclaimer that soa is preview for early adopters, also fix the theme files at the same time

* minor edits

* restore theme customizations

* get rid of the =copy-to-clipboard' dohickies

* fix formatting issues

* fix another broken link

* fix merge conflicts

* Add SOA sample doc (#1234)

* WIP: Add SOA sample doc

* incorporate Samba edits

* incorprated updates

* add soa preview warnings

* updates to soa doc based on end to end review/test

* merge 1295 from master

* Owls 73891 retry (#1283)

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* fix NamespaceTest

* fix asynchronous thread

* Revert changes

* merge 1296 from master

* merge 1299 from master

* PR: Create JRF domain using create-rcu-schema sample (#1274)

* v1 of new jrfdomain test

* adding domain yaml file

* modification

* pull Pani's latest sample

* pull pani's latest sample

* increase DBping attempts

* stop DB in unPrepare phase

* increase DBping attempts to 100

* debug DB connection issue

* debugging

* adding DB_BDB_BUNDLE to oradb.yaml

* debugging

* use database 12.2.0.1 image instead of slim version

* adding missing class

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* setMaxIterationsPod to 35

* correct the file name

* minor change

* minor change

* minor change

* adding doc

* address review comment

* minor change

* debugging

* debugging

* debugging

* refine the code

* debugging

* debugging

* minor change

* remove the commented out code

* fix checkstyle

* address review comments

* OWLS-77432 :  add new rcuType Parameter (#1298)

* OWLS-77432 :  add new rcuType Parameter

* Minor Modification to the script to handle imagePull secret

* Switched from latest grafana to 3.12.0 version of helm chart due syntax error in chart helm/charts#18215 (#1310)

*  added debug

*  added debug1

* replaced latest version to 3.12.0 version of helmchart grafana

*  cleaned commented out lines

* PR: Fix Jrf quicktest suite issue (#1314)

* fix JRF domain QUICKTEST

* debugging

* PR: Owls76920 change JRF domain class name starting with It (#1320)

* changing JrfDomainOnPvWlst.java to ItJrfDomainOnPvWlst.java

* minor change

* to exclude the old Jrf tests

* fix typo in create-domain script

* Add a note to the quickstart about variations between k8s versions

* OWLS-76689 - SOA:ADMINSERVER TAKING TIME TO RESTART USING SERVERSTARTPOLICY(NEVER TO IF_NEEDED) ON OKE CLUSTER  (#1319)

* delete service if domain is shutting down evern if isPreserveServices is true

* do not add precreateservice only server to startup list if both admin server and managed server should not be started

* add unit tests

* test name fix

* unit test fix, and code cleanup to improve readability

* test fixes

* OWLS-77556: replace complete env dump in pods/job with curated listin… (#1323)

* OWLS-77556: replace complete env dump in pods/job with curated listing of env var values

* suppress verbose checkEnv output if traceEnv recently called

* Javadoc for 2.3.1

* Domain version v6

* Deploy tooling 1.6.0

* Helm chart updates

* ensure that domain directory exists (#1324)

* SOA related changes for operator 2.3.0 (#1305)

* 2.3.0 changes for soa

Conflicts:
	kubernetes/samples/scripts/create-soa-domain/common/create-domain-job.sh
	kubernetes/samples/scripts/create-soa-domain/common/createSOADomain.py
	kubernetes/samples/scripts/create-soa-domain/common/utility.sh
	kubernetes/samples/scripts/create-soa-domain/create-domain-inputs.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain.sh
	kubernetes/samples/scripts/create-soa-domain/delete-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/wlst/create-domain-script.sh

* 2.3.0 domain-home-on-pv directory

* changing soa image name

* doc updates corresponding to SOA 2.3.0 PR 1305

* Incorporated review comments for PR 1305

* Move to 2.4.0

* Prepare file permissions on persistent volume using an init container (#1332)

* Prepare file permissions on persistent volume using an init container

* Correct location of volumes

* Revert changes to archives
rjeberhard added a commit that referenced this pull request Nov 19, 2019
* Update pre-requisites (#1258)

* update prereqs

* Update introduction.md

update docker pre-req (monica approved)

* Add FAQ article to describe how to use an OCI Load Balancer (#1268)

* add faq article for oci lb

* changed from review comments

* changed from review comments

* changed from review comments

* changed from review comments

* fix typo

*  add note to advise against using console for starting and stopping servers (#1271)

* fix formatting and minor edits

* merge 1281 into master (#1284)

* Add TOC to Elastic Stack section page

* Add OpenShift security section for anyuid security context (#1291)

* Add information on OpenShift anyuid security context

* Address comments on the OpenShift anyuid security context information

* fix typo

* revise term WebLogic operator (#1292)

* merge 1264 from develop

* add missing information to the domain home in image doc (#1295)

* add missing information to the domain home in image doc

* fix formatting

* add FAN FAQ (#1296)

* add FAN FAQ

* edit title

* fix one minor typo

* incorporate reviewer comments

* fix date and adjust the awkward sentence

* This commit promotes the SOA samples and documentation to master. (#1297)

In addition it picks up the updated hugo theme, which will fix
some rendering issues.

* Update prereq information in docs (#1299)

* update prereq information in docs

* update prereq information in docs

* update prereq information in docs

* explicitly state support for oke, olc4k and aks

* explicitly state support for oke, olc4k and aks

* just say authorized cloud environments, link, and leave it at that

* just say authorized cloud environments, link, and leave it at that

* just say authorized cloud environments, link, and leave it at that

* fix typo in create-domain script (#1306)

* Add a note to the quickstart about variations between k8s versions (#1317)

* Operator version 2.4.0 (#1333)

* Rebuilt charts

* OWLS-76347 New sample scripts to manage DB service and RCU Schema (#1217)

* OWLS-76347 New sample scripts to manage DB service and RCU Schema

* eliminate duplication logger creation (#1225)

* merge 1241 into develop

* QUICKTEST and FULLTEST categorization  (#1237)

* test categorization into quicktest,fulltest, nightly

* fix quicktest

* fix typo

* fix sitconfig tests

* fix nightly

* remove fulltest

* remove fulltest

* remove smoketest which is not used

* change profile name

* triage external jenkins failures

* use operator image env vars for target op release

* run JRF test in nightly

* default quicktest true

* add retry for PV dir creation

* rename nightly to fulltest

* fulltest condition change

* fix compilation error

* readme and usecases updated

* readme updated

* adding domain in image wdt test to quicktest

* fix pv dir creation retry

* changed profile name

* OWLS-74959 - Validate FMW Infrastructure uses configured clusters in introspector job (#1230)

* validate FMW infrastructure domain cannot use dynamic clusters

* add missing namespaces to kubectl commands

* namespace

* rename ALLOW_DYNAMIC_IN_FMW_INFRA env var

* support testing for invalid domain testing

* fix env var name in validation error message

* Integration tests should take the env variable for WDT version to download (#1242)

* adding support to take WDT_VERSION env var

* remove commented code

* fix extra space

* Prepare for operator 2.3.1

* Revert "eliminate duplication logger creation (#1225)"

This reverts commit 218331d.

* WIP Added test to cover weblogicLoggingExporterFilters (#1211)

* Added test to cover weblogicLoggingExporterFilters jenkins-ignore

* Resolve CheckStyle issues

* merge 1246 changes from master

* Move to Kubernetes Java Client 6.0.1 (#1249)

* Use Kubernetes Java client 6.0.1

* Update domain status on Unprocessable Error (#1250)

* Update domain status on Unprocessable Error

* Set domain status when job creation fails with unprocessable entity

* OWLS-76624 (Resolves #1228) - Introspector pod not picking up the container context from the domain resource (#1247)

* support container and pod securityContext in introspector job. Code refactoring

* unit tests

* unit test

* minor cleanups

* merge conflicts

* unused imports

* cleanup import ordering

* CheckStyle corrections

* K8s service account (#1235)

* add service account to serverpod

* OWLS-73891 part 1: update warning messages and fix a helm upgrade issue (#1253)

* OWLS-73891 part 1 - fix stale domain watcher and add namespace in security check warning messages

* More cleanup of stale states associated with a recreated namespace

* Add REST resource annotion to ignore unknown properties (#1255)

* Simplify WaitForReadyStep (#1256)

* OWLS-76720 (Resolves #1198) - Fixes missing valueFrom envVar values (#1254)

* fixes missing valueFrom to env var

* Fix Javadoc and CheckStyle

* Revert pod watcher refactoring

* merge 1258 into develop

* OWLS-76780 : Modify FMW (domain-in-image) sample to support Restricted JRF Domain (#1263)

* OWLS-76806 (Resolves #1231) - scripts such as livenessProbe.sh should use JAVA_HOME if set (#1262)

* Prepend PATH with JAVA_HOME/bin before calling jps

* comment

* append only if JAVA_HOME/bin not already in PATH

* Reduced execution time, added support to execute against different versions of Grafana, Prom, WDT, monitoring exporter (#1265)

* modified the tests to improve exec time

* modified tests to improve perfomance

* added wait time for mysql creation

* corrected chart version for prom

* fixed typo

* added version choice for monexp

* add code cleanup

* remove not needed files

* fixed typo

* added suport for downloading monexp instead of building

* added prom,grafana, monexp as env var option

* fixed typo

*  fixed env setting

* added some debug

* WDT version 1.4.0 (#1267)

* WDT version 1.4.0

* OWLS-76949 added support for exposeAdminT3Channel in FMWDomain in domain-in-image model

* merge 1268 from master

* typo

* Modify sample scripts for RCU and DB Creation (#1238)

* Modification based on Mark's Comment

* Missiing typo correction

* Addded ImagePullSecret to Oracle and RCU pod

* Modify the default image pull secret name to docker-store to match with java integration default

* Missing modified file

* Modified the usage command

* Resolution to Review comments from Ryan

* edited README

* minor clean up

* Modified the cpu limit

* Soa 2.2.1 (#1243)

* Adding pv pvc config files for database

* Adding soa domain creation scripts/files

* Added database configuration yaml files

* Add files via upload

Adding SOA ESS changes

* Delete createFMWDomain.py

* Delete db-pv.yaml

* Delete db-pvc.yaml

* Create db-with-pv.yaml

* Create db-without-pv.yaml

* Delete db-with-pv.yaml

* Delete db-without-pv.yaml

* integrated soa ess osb changes from SOA dev team

* fixing indentation problem for bug 30158564

* added execute permissions for create-domain script

* Update db-without-pv.yaml

* Add files via upload

* Delete create-domain.sh

* Add files via upload

* updates for precreateService and osb_cluster

* removing extra characters if any

* fixing permission issue for create-domain.sh

* removed commented blocks and updated copyright

* added exec permissions for the scripts

* Updated description for domainType input

* Update create-domain-inputs.yaml

* corrected domain value

* corrected domain value

* corrected domain value

* removed precreateService in domain template

removed precreateService from serverpod and cluster definition

* removed soa domain related changes

removed soa domain related changes here. will be moving it to create-domain.sh script which is under soa samples.

* soa specific changes in domain.yaml

* removed extra line

* removing extra line

* removed pv pvc scripts

* enable checkstyle on test sources (#1270)

* Update license format (#1272)

* fix typo in License.txt - matches https://oss.oracle.com/licenses/upl/ (#1278)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support (#1106)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support

* incorporate first set of code review comments

* Update description of dataHome and remove dead code based on code review

* update the documentation so that it covers dataHome

* add DOMAIN_UID to persistent store directory path to distinguish different domains

* Create symbolic link from DOMAIN data dir to data home directory during server startup

* Changes based on review by Tom Barnes

* Update integration-test to verify centralized dataHome location of default and custom file stores

* another revision based on Tom Barnes review

* add env vars to wl-pod.yamlt for new env variable which disables symbolic link support for server's default data directory

* refactor symbolic link support to utils.sh and mark the feature as experimental

* updated descripton of experimental symbolic link support

* put local createFolder in introspectDomain.sh and moved pipefail to script scope in utils.sh

* Add unit tests for verifying dataHome env in WLS server pods

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* OWLS-73891 part2 - clean up stale states about introspector jobs

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add unit test

* Retry and wait between retries of failed downloads jenkins-ignore (#1266)

* Retry and wait between retries of failed downloads jenkins-ignore

* Added loop to wget jar files jenkins-ignore

* Reduced wget retry times since wget is in a loop now jenkins-ignore

*  add note to advise against using console for starting and stopping servers

* Revert "OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)"

This reverts commit 8b46f0c.

* Fix CheckStyle

* Add instructions to configure fluentd to export domain logs to ELK (#1281)

* adding sample help for configuring fluentd sidecar

* change org structure

* initial round of minor edits

* more backticks

* added some more explanation

* updates for Rosemary's feedback

* more updates for Rosemary's feedback

* update samples overview

* updates to Mark's comments

* more edits based on feedback

* fix Managed coherence test (#1279)

* Refactor managed coherence test and add error checking to avoid false postives

* revert chenages to Domain.java

* fix error reported by check style audit

* incorporating review comments

* run integration test in openshift (#1280)

* changes required to run ItOperator test in opneshift

* updates for running ItOperator on openshift

* run integration tests in openshift

* fix check style errors

* incorporating review comments

* merge 1285 from master

* merge 1282 from master

* PR: owls-77057 fix nightly full test failure for changing image test of ItPodsRestart (#1289)

* setMaxIterationsPod(40) for ItPodRestart

* setMaxIterationsPod(40) for ItPodRestart

* Added container name when copying archive files jenkins-ignore (#1288)

* Added container name when copying archive files jenkins-ignore

* Added try catch jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* merge 1291 from master

* OWLS-76832 (Resolves #1232) - Error using variable in pod template if value has underscore (#1286)

* convert substituted variables to DNS1123 if used as names

* only convert variables for selected, customizable list of fields

* checkstyle fixes

* add dns1123Fields to helm chart to override default list of field names that requires dns-1123 values

* document dns1123fields

* dns1123Names values no longer case sensitive

* minor cleanup

* doc update base on feedback

* merge 1292 from master

* OWLS-73891 part3 - add FAQ entry for managing namespaces (#1264)

* Add FAQ documentation for managing namespaces

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a minor typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix format

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More format changes

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Correct the wrong example job output

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More fine tuning of the contents

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* One more cross-reference

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add links to inidivual sections and add a section for getting the domainNamespaces value

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* incorprate edits

* Adjust cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Timestamp

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Reword the last section about restart operator pod

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Simplify WaitForReady step (#1277)

* Simply WaitForReady step

* checkstyle for copyright

* Modified rcu script to support both SOA and FMWInfra Domain (#1290)

* Modified rcu script to support both SOA and FMWInfra Domain

* Fixed few typo on the script as per Review Comment

* Add SOA user doc (#1229)

* WIP: Add SOA user doc

* update link to SAO sample

* fix broken x-refs due to updated directory structure

* incorporate Samba edits

* incorprated updates

* MARK: add disclaimer that soa is preview for early adopters, also fix the theme files at the same time

* minor edits

* restore theme customizations

* get rid of the =copy-to-clipboard' dohickies

* fix formatting issues

* fix another broken link

* fix merge conflicts

* Add SOA sample doc (#1234)

* WIP: Add SOA sample doc

* incorporate Samba edits

* incorprated updates

* add soa preview warnings

* updates to soa doc based on end to end review/test

* merge 1295 from master

* Owls 73891 retry (#1283)

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* fix NamespaceTest

* fix asynchronous thread

* Revert changes

* merge 1296 from master

* merge 1299 from master

* PR: Create JRF domain using create-rcu-schema sample (#1274)

* v1 of new jrfdomain test

* adding domain yaml file

* modification

* pull Pani's latest sample

* pull pani's latest sample

* increase DBping attempts

* stop DB in unPrepare phase

* increase DBping attempts to 100

* debug DB connection issue

* debugging

* adding DB_BDB_BUNDLE to oradb.yaml

* debugging

* use database 12.2.0.1 image instead of slim version

* adding missing class

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* setMaxIterationsPod to 35

* correct the file name

* minor change

* minor change

* minor change

* adding doc

* address review comment

* minor change

* debugging

* debugging

* debugging

* refine the code

* debugging

* debugging

* minor change

* remove the commented out code

* fix checkstyle

* address review comments

* OWLS-77432 :  add new rcuType Parameter (#1298)

* OWLS-77432 :  add new rcuType Parameter

* Minor Modification to the script to handle imagePull secret

* Switched from latest grafana to 3.12.0 version of helm chart due syntax error in chart helm/charts#18215 (#1310)

*  added debug

*  added debug1

* replaced latest version to 3.12.0 version of helmchart grafana

*  cleaned commented out lines

* PR: Fix Jrf quicktest suite issue (#1314)

* fix JRF domain QUICKTEST

* debugging

* PR: Owls76920 change JRF domain class name starting with It (#1320)

* changing JrfDomainOnPvWlst.java to ItJrfDomainOnPvWlst.java

* minor change

* to exclude the old Jrf tests

* fix typo in create-domain script

* Add a note to the quickstart about variations between k8s versions

* OWLS-76689 - SOA:ADMINSERVER TAKING TIME TO RESTART USING SERVERSTARTPOLICY(NEVER TO IF_NEEDED) ON OKE CLUSTER  (#1319)

* delete service if domain is shutting down evern if isPreserveServices is true

* do not add precreateservice only server to startup list if both admin server and managed server should not be started

* add unit tests

* test name fix

* unit test fix, and code cleanup to improve readability

* test fixes

* OWLS-77556: replace complete env dump in pods/job with curated listin… (#1323)

* OWLS-77556: replace complete env dump in pods/job with curated listing of env var values

* suppress verbose checkEnv output if traceEnv recently called

* Javadoc for 2.3.1

* Domain version v6

* Deploy tooling 1.6.0

* Helm chart updates

* ensure that domain directory exists (#1324)

* SOA related changes for operator 2.3.0 (#1305)

* 2.3.0 changes for soa

Conflicts:
	kubernetes/samples/scripts/create-soa-domain/common/create-domain-job.sh
	kubernetes/samples/scripts/create-soa-domain/common/createSOADomain.py
	kubernetes/samples/scripts/create-soa-domain/common/utility.sh
	kubernetes/samples/scripts/create-soa-domain/create-domain-inputs.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain.sh
	kubernetes/samples/scripts/create-soa-domain/delete-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/wlst/create-domain-script.sh

* 2.3.0 domain-home-on-pv directory

* changing soa image name

* doc updates corresponding to SOA 2.3.0 PR 1305

* Incorporated review comments for PR 1305

* Move to 2.4.0

* Prepare file permissions on persistent volume using an init container (#1332)

* Prepare file permissions on persistent volume using an init container

* Correct location of volumes

* Revert changes to archives

* Documentation and samples updates for 2.4.0 (#1331)

* update prereqs

* [enel] update pv sample to fix pv fs owner

* archive static docs from 2.3.0

* archive 2.3.0 docs

* update javadoc and domains swagger

* update operator swagger docs

* archive site docs

* fix archived 2.3.0 docs to have the 'old' message on it

* update release notes

* fix create domain job template - had too many volumes sections

* update docs for 2.4.0

* fx javadocs

* add chart

* resolve merge conflicts

* Update generated doc

* fix docs (#1334)

* Fix doc 2.4.0 (#1335)

* fix docs

* fix archive notice on 2.3.0 docs

* Fix doc 2.4.0 (#1336)

* fix docs

* fix archive notice on 2.3.0 docs

* fix current release in readme

* Fix doc 2.4.0 (#1337)

* fix docs

* fix archive notice on 2.3.0 docs

* fix current release in readme

* third time's the charm

* fix merge problem
rjeberhard added a commit that referenced this pull request Feb 26, 2020
* Rebuilt charts

* OWLS-76347 New sample scripts to manage DB service and RCU Schema (#1217)

* OWLS-76347 New sample scripts to manage DB service and RCU Schema

* eliminate duplication logger creation (#1225)

* merge 1241 into develop

* QUICKTEST and FULLTEST categorization  (#1237)

* test categorization into quicktest,fulltest, nightly

* fix quicktest

* fix typo

* fix sitconfig tests

* fix nightly

* remove fulltest

* remove fulltest

* remove smoketest which is not used

* change profile name

* triage external jenkins failures

* use operator image env vars for target op release

* run JRF test in nightly

* default quicktest true

* add retry for PV dir creation

* rename nightly to fulltest

* fulltest condition change

* fix compilation error

* readme and usecases updated

* readme updated

* adding domain in image wdt test to quicktest

* fix pv dir creation retry

* changed profile name

* OWLS-74959 - Validate FMW Infrastructure uses configured clusters in introspector job (#1230)

* validate FMW infrastructure domain cannot use dynamic clusters

* add missing namespaces to kubectl commands

* namespace

* rename ALLOW_DYNAMIC_IN_FMW_INFRA env var

* support testing for invalid domain testing

* fix env var name in validation error message

* Integration tests should take the env variable for WDT version to download (#1242)

* adding support to take WDT_VERSION env var

* remove commented code

* fix extra space

* Prepare for operator 2.3.1

* Revert "eliminate duplication logger creation (#1225)"

This reverts commit 218331d7ccfc2f0055de52799f7aa33d0717e8e6.

* WIP Added test to cover weblogicLoggingExporterFilters (#1211)

* Added test to cover weblogicLoggingExporterFilters jenkins-ignore

* Resolve CheckStyle issues

* merge 1246 changes from master

* Move to Kubernetes Java Client 6.0.1 (#1249)

* Use Kubernetes Java client 6.0.1

* Update domain status on Unprocessable Error (#1250)

* Update domain status on Unprocessable Error

* Set domain status when job creation fails with unprocessable entity

* OWLS-76624 (Resolves #1228) - Introspector pod not picking up the container context from the domain resource (#1247)

* support container and pod securityContext in introspector job. Code refactoring

* unit tests

* unit test

* minor cleanups

* merge conflicts

* unused imports

* cleanup import ordering

* CheckStyle corrections

* K8s service account (#1235)

* add service account to serverpod

* OWLS-73891 part 1: update warning messages and fix a helm upgrade issue (#1253)

* OWLS-73891 part 1 - fix stale domain watcher and add namespace in security check warning messages

* More cleanup of stale states associated with a recreated namespace

* Add REST resource annotion to ignore unknown properties (#1255)

* Simplify WaitForReadyStep (#1256)

* OWLS-76720 (Resolves #1198) - Fixes missing valueFrom envVar values (#1254)

* fixes missing valueFrom to env var

* Fix Javadoc and CheckStyle

* Revert pod watcher refactoring

* merge 1258 into develop

* OWLS-76780 : Modify FMW (domain-in-image) sample to support Restricted JRF Domain (#1263)

* OWLS-76806 (Resolves #1231) - scripts such as livenessProbe.sh should use JAVA_HOME if set (#1262)

* Prepend PATH with JAVA_HOME/bin before calling jps

* comment

* append only if JAVA_HOME/bin not already in PATH

* Reduced execution time, added support to execute against different versions of Grafana, Prom, WDT, monitoring exporter (#1265)

* modified the tests to improve exec time

* modified tests to improve perfomance

* added wait time for mysql creation

* corrected chart version for prom

* fixed typo

* added version choice for monexp

* add code cleanup

* remove not needed files

* fixed typo

* added suport for downloading monexp instead of building

* added prom,grafana, monexp as env var option

* fixed typo

*  fixed env setting

* added some debug

* WDT version 1.4.0 (#1267)

* WDT version 1.4.0

* OWLS-76949 added support for exposeAdminT3Channel in FMWDomain in domain-in-image model

* merge 1268 from master

* typo

* Modify sample scripts for RCU and DB Creation (#1238)

* Modification based on Mark's Comment

* Missiing typo correction

* Addded ImagePullSecret to Oracle and RCU pod

* Modify the default image pull secret name to docker-store to match with java integration default

* Missing modified file

* Modified the usage command

* Resolution to Review comments from Ryan

* edited README

* minor clean up

* Modified the cpu limit

* Soa 2.2.1 (#1243)

* Adding pv pvc config files for database

* Adding soa domain creation scripts/files

* Added database configuration yaml files

* Add files via upload

Adding SOA ESS changes

* Delete createFMWDomain.py

* Delete db-pv.yaml

* Delete db-pvc.yaml

* Create db-with-pv.yaml

* Create db-without-pv.yaml

* Delete db-with-pv.yaml

* Delete db-without-pv.yaml

* integrated soa ess osb changes from SOA dev team

* fixing indentation problem for bug 30158564

* added execute permissions for create-domain script

* Update db-without-pv.yaml

* Add files via upload

* Delete create-domain.sh

* Add files via upload

* updates for precreateService and osb_cluster

* removing extra characters if any

* fixing permission issue for create-domain.sh

* removed commented blocks and updated copyright

* added exec permissions for the scripts

* Updated description for domainType input

* Update create-domain-inputs.yaml

* corrected domain value

* corrected domain value

* corrected domain value

* removed precreateService in domain template

removed precreateService from serverpod and cluster definition

* removed soa domain related changes

removed soa domain related changes here. will be moving it to create-domain.sh script which is under soa samples.

* soa specific changes in domain.yaml

* removed extra line

* removing extra line

* removed pv pvc scripts

* enable checkstyle on test sources (#1270)

* Update license format (#1272)

* fix typo in License.txt - matches https://oss.oracle.com/licenses/upl/ (#1278)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support (#1106)

* OWLS-69370: Introspect: Domain-in-Image: Add data home override support

* incorporate first set of code review comments

* Update description of dataHome and remove dead code based on code review

* update the documentation so that it covers dataHome

* add DOMAIN_UID to persistent store directory path to distinguish different domains

* Create symbolic link from DOMAIN data dir to data home directory during server startup

* Changes based on review by Tom Barnes

* Update integration-test to verify centralized dataHome location of default and custom file stores

* another revision based on Tom Barnes review

* add env vars to wl-pod.yamlt for new env variable which disables symbolic link support for server's default data directory

* refactor symbolic link support to utils.sh and mark the feature as experimental

* updated descripton of experimental symbolic link support

* put local createFolder in introspectDomain.sh and moved pipefail to script scope in utils.sh

* Add unit tests for verifying dataHome env in WLS server pods

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* OWLS-73891 part2 - clean up stale states about introspector jobs

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add unit test

* Retry and wait between retries of failed downloads jenkins-ignore (#1266)

* Retry and wait between retries of failed downloads jenkins-ignore

* Added loop to wget jar files jenkins-ignore

* Reduced wget retry times since wget is in a loop now jenkins-ignore

*  add note to advise against using console for starting and stopping servers

* Revert "OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)"

This reverts commit 8b46f0ccb6a1c469364be04d9a5a493bbe0dcb8d.

* Fix CheckStyle

* Add instructions to configure fluentd to export domain logs to ELK (#1281)

* adding sample help for configuring fluentd sidecar

* change org structure

* initial round of minor edits

* more backticks

* added some more explanation

* updates for Rosemary's feedback

* more updates for Rosemary's feedback

* update samples overview

* updates to Mark's comments

* more edits based on feedback

* fix Managed coherence test (#1279)

* Refactor managed coherence test and add error checking to avoid false postives

* revert chenages to Domain.java

* fix error reported by check style audit

* incorporating review comments

* run integration test in openshift (#1280)

* changes required to run ItOperator test in opneshift

* updates for running ItOperator on openshift

* run integration tests in openshift

* fix check style errors

* incorporating review comments

* merge 1285 from master

* merge 1282 from master

* PR: owls-77057 fix nightly full test failure for changing image test of ItPodsRestart (#1289)

* setMaxIterationsPod(40) for ItPodRestart

* setMaxIterationsPod(40) for ItPodRestart

* Added container name when copying archive files jenkins-ignore (#1288)

* Added container name when copying archive files jenkins-ignore

* Added try catch jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* Changed to use copy via cat jenkins-ignore

* merge 1291 from master

* OWLS-76832 (Resolves #1232) - Error using variable in pod template if value has underscore (#1286)

* convert substituted variables to DNS1123 if used as names

* only convert variables for selected, customizable list of fields

* checkstyle fixes

* add dns1123Fields to helm chart to override default list of field names that requires dns-1123 values

* document dns1123fields

* dns1123Names values no longer case sensitive

* minor cleanup

* doc update base on feedback

* merge 1292 from master

* OWLS-73891 part3 - add FAQ entry for managing namespaces (#1264)

* Add FAQ documentation for managing namespaces

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a minor typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix format

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More format changes

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Correct the wrong example job output

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More fine tuning of the contents

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More edits

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* One more cross-reference

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add links to inidivual sections and add a section for getting the domainNamespaces value

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix a typo

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* incorprate edits

* Adjust cross-references

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Timestamp

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Reword the last section about restart operator pod

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Simplify WaitForReady step (#1277)

* Simply WaitForReady step

* checkstyle for copyright

* Modified rcu script to support both SOA and FMWInfra Domain (#1290)

* Modified rcu script to support both SOA and FMWInfra Domain

* Fixed few typo on the script as per Review Comment

* Add SOA user doc (#1229)

* WIP: Add SOA user doc

* update link to SAO sample

* fix broken x-refs due to updated directory structure

* incorporate Samba edits

* incorprated updates

* MARK: add disclaimer that soa is preview for early adopters, also fix the theme files at the same time

* minor edits

* restore theme customizations

* get rid of the =copy-to-clipboard' dohickies

* fix formatting issues

* fix another broken link

* fix merge conflicts

* Add SOA sample doc (#1234)

* WIP: Add SOA sample doc

* incorporate Samba edits

* incorprated updates

* add soa preview warnings

* updates to soa doc based on end to end review/test

* merge 1295 from master

* Owls 73891 retry (#1283)

* OWLS-73891 part2 - clean up stale states about introspector jobs and domain presence infos (#1261)

* fix NamespaceTest

* fix asynchronous thread

* Revert changes

* merge 1296 from master

* merge 1299 from master

* PR: Create JRF domain using create-rcu-schema sample (#1274)

* v1 of new jrfdomain test

* adding domain yaml file

* modification

* pull Pani's latest sample

* pull pani's latest sample

* increase DBping attempts

* stop DB in unPrepare phase

* increase DBping attempts to 100

* debug DB connection issue

* debugging

* adding DB_BDB_BUNDLE to oradb.yaml

* debugging

* use database 12.2.0.1 image instead of slim version

* adding missing class

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* debugging

* setMaxIterationsPod to 35

* correct the file name

* minor change

* minor change

* minor change

* adding doc

* address review comment

* minor change

* debugging

* debugging

* debugging

* refine the code

* debugging

* debugging

* minor change

* remove the commented out code

* fix checkstyle

* address review comments

* OWLS-77432 :  add new rcuType Parameter (#1298)

* OWLS-77432 :  add new rcuType Parameter

* Minor Modification to the script to handle imagePull secret

* Switched from latest grafana to 3.12.0 version of helm chart due syntax error in chart https://github.com/helm/charts/issues/18215 (#1310)

*  added debug

*  added debug1

* replaced latest version to 3.12.0 version of helmchart grafana

*  cleaned commented out lines

* PR: Fix Jrf quicktest suite issue (#1314)

* fix JRF domain QUICKTEST

* debugging

* PR: Owls76920 change JRF domain class name starting with It (#1320)

* changing JrfDomainOnPvWlst.java to ItJrfDomainOnPvWlst.java

* minor change

* to exclude the old Jrf tests

* fix typo in create-domain script

* Add a note to the quickstart about variations between k8s versions

* OWLS-76689 - SOA:ADMINSERVER TAKING TIME TO RESTART USING SERVERSTARTPOLICY(NEVER TO IF_NEEDED) ON OKE CLUSTER  (#1319)

* delete service if domain is shutting down evern if isPreserveServices is true

* do not add precreateservice only server to startup list if both admin server and managed server should not be started

* add unit tests

* test name fix

* unit test fix, and code cleanup to improve readability

* test fixes

* OWLS-77556: replace complete env dump in pods/job with curated listin… (#1323)

* OWLS-77556: replace complete env dump in pods/job with curated listing of env var values

* suppress verbose checkEnv output if traceEnv recently called

* Javadoc for 2.3.1

* Domain version v6

* Deploy tooling 1.6.0

* Helm chart updates

* ensure that domain directory exists (#1324)

* SOA related changes for operator 2.3.0 (#1305)

* 2.3.0 changes for soa

Conflicts:
	kubernetes/samples/scripts/create-soa-domain/common/create-domain-job.sh
	kubernetes/samples/scripts/create-soa-domain/common/createSOADomain.py
	kubernetes/samples/scripts/create-soa-domain/common/utility.sh
	kubernetes/samples/scripts/create-soa-domain/create-domain-inputs.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/create-domain.sh
	kubernetes/samples/scripts/create-soa-domain/delete-domain-job-template.yaml
	kubernetes/samples/scripts/create-soa-domain/wlst/create-domain-script.sh

* 2.3.0 domain-home-on-pv directory

* changing soa image name

* doc updates corresponding to SOA 2.3.0 PR 1305

* Incorporated review comments for PR 1305

* Update charts

* Handle forbidden status from Async call (#1341)

* update docs

* update script

* Update sit-cfg doc to note when _not_ to change external ports (#1346)

* Update sit-cfg doc to note situations when _not_ to change external ports

* Update sit-cfg doc to note situations when _not_ to change external ports

* Correct issue with CRD not generating structural schema (#1347)

* add file ownership tracing to introspect-job/server-pod, and to sample pv create-domain-job scripts (#1338)

* add file ownership tracing to pod and job start scripts

* add file owner tracing to pv samples

* update WLS image version

* Remove fsGroup from tests for containerSecurityContext (#1356)

* Run integration tests in parallel using Junit5 (#1355)

* making ItOperator run in parallel

* making ItOperator run in parallel

* changes for more tests

* making more classes use unique operator

* fixing more tests

* fix more classes

* changing more tests to use unique operator

* fix checkstyle

* fix checkstyle issues, sharingpv test

* fix checkstyle

* fix helm chart test

* fix for parallel runs

* fix pom to run post-integration-test

* fix pom for log format

* keep domain running if test fails for debugging

* adding javadoc and some refactoring

* remove spaces in domain namespace list

* Suncup Logging tests jenkins-ignore

* change the image name for domain in image test case

* synchronize ns update in LB

* Synced up ItElasticlogging test jenkins-ignore

* Synced up ItElasticlogging test jenkins-ignore

* debugging

* conflict when creating LB. So adding synchronization

* v1 change for ItPodsRestart tests in parallel

* adding unique image attribute

* adding unique name for conflicting domain yaml file

* fixing coherence test

* fixing image name and coherence test

* updated tests to support parallel runs

* try synchronize one more time

* increased helm timeout

* skip statedump.sh as its failing

* corrected checkstyle issues

* remove syncrhonize at method level

* corrected checkstyle issues1

* checkstyle1

* undo pom.xml change

* checkstyle2

*  minor fix of exec order

* updated test to run in parallel

* fixed checkstyle

* uncommented one test, it will fails to run in paral

* fixed checkstyle

* switch between seq or parallel using var

* initial fix

* updated readme for parallel testing

* updated readme for parallel testing

* updated readme for parallel testing

* fixing the image name for dominimage

* Remove the tag

* Fix the image name pushing to registry

* convert SitConfig tests to run in paral

* Fixed Voyager issue when running StickySession test jenkins-ignore

* Fixed Voyager issue when running StickySession test 2 jenkins-ignore

* run against modified exporter branch temp

* Removed debugger from LoadBalance.java jenkins-ignore

* dir structure changes

* Added loop to wait Voyager gets ready jenkins-ignore

*  fixed mysql jdbs driver

* del unchanged test files

* pvroot dir creation

*  updated mysql creation

*  fixed typo

*  fixed typo1

* fix path

* itclass to lowercase

* fix sample test

* fix sample test

* updated version of Mon Exp, fixed SitConfig

* fixed checkstyle

* modify more tests

* fixed vars initializing

* fixed vars initializing1

* checkstyle

* initialize fix3

* initialize fix3

* fixed ns

* fixed ns1

* fixed dst

* fixed ns1

* fix1

* fix2

* fix3

* fixed fix4

* fixed fix5

* adding more tests with results dir changes

* adding more tests with changes

* refactor changes

* fix jrf result loc

* fixing jrf test

* exclude elasticlogging test

* fix jrf test

* fix jrf test

* fix jrf tests

* integration test changes to run with junit5

* refactoring

* create dir with root permissions

* run only quicktests for quicktests

* adding jrf tests

* initial version for JRf testsinparallel

* make getNewSuffixCnt synchronized and fix testClassName

* undo elasticlogging exclude

* Fixed a hanging issue jenkins-ignore

* change the pom.xml

* delete the old Jrf test class

* fixed fix6

* fixed fix7

* fix8

* code cleanup

* fix11

* fix11

* fix12

* fix13

* exclude itmonitoringexporter

* fix asserts in k8sUtils

* fix14

* fix15

* fix116

* fix17

* fix18

* fix19

* fix20

* switched back to master for monexp

* add junit properties file

* increasing global maxiterations

* merged changes

* comply with PV/dir/ structure

* fix elk test

* comment out setWaitTime calls

* merge to current changes

* adding sleep as huiling suggested

* skip elk test which is hanging

* undo skip elk test which is hanging

* remove explicit set of iteration

* add javadoc

* remove unused constants and files

* updated code based on review

* updated code based on review1

* updated code based on review2

* deleting old jrf tests and commenting hanging test

* fixed MonExporter test

* fixed MonExporter test1

* Fixed issues running in parallel jenkins-ignore

* fixed MonExporter test3

* undo skip test

* undo skip test

* trying threadcountclasses 5

* remove unlimited thread count

* set percorethreadcount to false

* fixed MonExporter test4

* refactor itoperator into smaller classes

* increase thread count to 7

* fix quicktest issue

* added back monitoring exporter

* fixed db

* fixed db1

* delete commented out comments

* delete commented out comments1

* fix surefire plugin version

* update to it pom.xml

* fixing ItmonitoringExporter and Jrf test

* commenting elastic logging test

* add pod name and timeout, junit config

* fix namespace

* test with two profiles

* thread count 10

* add back wls jrf profile

* adding two profiles

* fixed shutdowntests and monexp for junit5

* reduce thread count

* junit5

* junit5-1

* junit5-2

* adding ingress check

* add option to run parallel/sequential and fix failing test

* test

* test1

* test3

* test4

* adding cleanup in post-integration-test

* minor changes

* fixing README

* fixing README

* reverting the change

* Added request-timeout jenkins-ignore (#1344)

* added option to specify the branch name for monitoring exporter GitHub project (#1359)

* fix helm chart test

* fix for parallel runs

* fix pom to run post-integration-test

* fix pom for log format

* keep domain running if test fails for debugging

* adding javadoc and some refactoring

* remove spaces in domain namespace list

* Suncup Logging tests jenkins-ignore

* change the image name for domain in image test case

* synchronize ns update in LB

* Synced up ItElasticlogging test jenkins-ignore

* Synced up ItElasticlogging test jenkins-ignore

* debugging

* conflict when creating LB. So adding synchronization

* v1 change for ItPodsRestart tests in parallel

* adding unique image attribute

* adding unique name for conflicting domain yaml file

* fixing coherence test

* fixing image name and coherence test

* updated tests to support parallel runs

* try synchronize one more time

* increased helm timeout

* skip statedump.sh as its failing

* corrected checkstyle issues

* remove syncrhonize at method level

* corrected checkstyle issues1

* checkstyle1

* undo pom.xml change

* checkstyle2

*  minor fix of exec order

* updated test to run in parallel

* fixed checkstyle

* uncommented one test, it will fails to run in paral

* fixed checkstyle

* switch between seq or parallel using var

* initial fix

* updated readme for parallel testing

* updated readme for parallel testing

* updated readme for parallel testing

* fixing the image name for dominimage

* Remove the tag

* Fix the image name pushing to registry

* convert SitConfig tests to run in paral

* Fixed Voyager issue when running StickySession test jenkins-ignore

* Fixed Voyager issue when running StickySession test 2 jenkins-ignore

* run against modified exporter branch temp

* Removed debugger from LoadBalance.java jenkins-ignore

* dir structure changes

* Added loop to wait Voyager gets ready jenkins-ignore

*  fixed mysql jdbs driver

* del unchanged test files

* pvroot dir creation

*  updated mysql creation

*  fixed typo

*  fixed typo1

* fix path

* itclass to lowercase

* fix sample test

* fix sample test

* updated version of Mon Exp, fixed SitConfig

* fixed checkstyle

* modify more tests

* fixed vars initializing

* fixed vars initializing1

* checkstyle

* initialize fix3

* initialize fix3

* fixed ns

* fixed ns1

* fixed dst

* fixed ns1

* fix1

* fix2

* fix3

* fixed fix4

* fixed fix5

* adding more tests with results dir changes

* adding more tests with changes

* refactor changes

* fix jrf result loc

* fixing jrf test

* exclude elasticlogging test

* fix jrf test

* fix jrf test

* fix jrf tests

* integration test changes to run with junit5

* refactoring

* create dir with root permissions

* run only quicktests for quicktests

* adding jrf tests

* initial version for JRf testsinparallel

* make getNewSuffixCnt synchronized and fix testClassName

* undo elasticlogging exclude

* Fixed a hanging issue jenkins-ignore

* change the pom.xml

* delete the old Jrf test class

* fixed fix6

* fixed fix7

* fix8

* code cleanup

* fix11

* fix11

* fix12

* fix13

* exclude itmonitoringexporter

* fix asserts in k8sUtils

* fix14

* fix15

* fix116

* fix17

* fix18

* fix19

* fix20

* switched back to master for monexp

* add junit properties file

* increasing global maxiterations

* merged changes

* comply with PV/dir/ structure

* fix elk test

* comment out setWaitTime calls

* merge to current changes

* adding sleep as huiling suggested

* skip elk test which is hanging

* undo skip elk test which is hanging

* remove explicit set of iteration

* add javadoc

* remove unused constants and files

* updated code based on review

* updated code based on review1

* updated code based on review2

* deleting old jrf tests and commenting hanging test

* fixed MonExporter test

* fixed MonExporter test1

* Fixed issues running in parallel jenkins-ignore

* fixed MonExporter test3

* undo skip test

* undo skip test

* trying threadcountclasses 5

* remove unlimited thread count

* set percorethreadcount to false

* fixed MonExporter test4

* refactor itoperator into smaller classes

* increase thread count to 7

* fix quicktest issue

* added back monitoring exporter

* fixed db

* fixed db1

* delete commented out comments

* delete commented out comments1

* fix surefire plugin version

* update to it pom.xml

* fixing ItmonitoringExporter and Jrf test

* commenting elastic logging test

* add pod name and timeout, junit config

* fix namespace

* test with two profiles

* thread count 10

* add back wls jrf profile

* adding two profiles

* fixed shutdowntests and monexp for junit5

* reduce thread count

* junit5

* junit5-1

* junit5-2

* adding ingress check

* fixed intermitent issues

* fixed intermitent issues1

* add option to run parallel/sequential and fix failing test

* fixed intermitent issues2

* fixed intermitent issues3

* fixed intermitent issues4

* test

* fix temp failures

* test1

* test3

* test4

* adding cleanup in post-integration-test

* minor changes

* fixing README

* fixing README

* reverting the change

* Added request-timeout jenkins-ignore (#1344)

* added branch ver

* added mon branch

* added mon branch1

* faq for external clients (#1358)

* add external client faq entry

* add external client faq entry

* more updates to external-clients FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Update external-client FAQ

* Add namespace watch (#1350)

* Add namespace watcher

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Debugging namespace watcher

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More operator code changes

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor fix

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor debugging message fix

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add a basic unit test case

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Complete the basic unit test case

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Take not only targetNamespaces, but also stopping state into consideration for start/stop namespaces

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix initial resource version for the watcher

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Cleanup

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* remove unused import

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Cleanup

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Remove invalid entry from resources test

* Added support for Custom NameSpace for DB Service (#1349)

* Added support for Custom NameSpace for DB Service

* Missing updated files

* Modified the QA infra

* resolution to jenkin failure

* More changes to DbUtils.java

* More test modification

* Modification based on Review Comments

* Incorporated more review comments

* More Chanegs to README.md file

* More chages for PR Review

* Sync up latest develop branch

* Add env var for docker images url and more changes (#1363)

* fix checkstyle issues, sharingpv test

* fix checkstyle

* fix helm chart test

* fix for parallel runs

* fix pom to run post-integration-test

* fix pom for log format

* keep domain running if test fails for debugging

* adding javadoc and some refactoring

* remove spaces in domain namespace list

* Suncup Logging tests jenkins-ignore

* change the image name for domain in image test case

* synchronize ns update in LB

* Synced up ItElasticlogging test jenkins-ignore

* Synced up ItElasticlogging test jenkins-ignore

* debugging

* conflict when creating LB. So adding synchronization

* v1 change for ItPodsRestart tests in parallel

* adding unique image attribute

* adding unique name for conflicting domain yaml file

* fixing coherence test

* fixing image name and coherence test

* updated tests to support parallel runs

* try synchronize one more time

* increased helm timeout

* skip statedump.sh as its failing

* corrected checkstyle issues

* remove syncrhonize at method level

* corrected checkstyle issues1

* checkstyle1

* undo pom.xml change

* checkstyle2

*  minor fix of exec order

* updated test to run in parallel

* fixed checkstyle

* uncommented one test, it will fails to run in paral

* fixed checkstyle

* switch between seq or parallel using var

* initial fix

* updated readme for parallel testing

* updated readme for parallel testing

* updated readme for parallel testing

* fixing the image name for dominimage

* Remove the tag

* Fix the image name pushing to registry

* convert SitConfig tests to run in paral

* Fixed Voyager issue when running StickySession test jenkins-ignore

* Fixed Voyager issue when running StickySession test 2 jenkins-ignore

* run against modified exporter branch temp

* Removed debugger from LoadBalance.java jenkins-ignore

* dir structure changes

* Added loop to wait Voyager gets ready jenkins-ignore

*  fixed mysql jdbs driver

* del unchanged test files

* pvroot dir creation

*  updated mysql creation

*  fixed typo

*  fixed typo1

* fix path

* itclass to lowercase

* fix sample test

* fix sample test

* updated version of Mon Exp, fixed SitConfig

* fixed checkstyle

* modify more tests

* fixed vars initializing

* fixed vars initializing1

* checkstyle

* initialize fix3

* initialize fix3

* fixed ns

* fixed ns1

* fixed dst

* fixed ns1

* fix1

* fix2

* fix3

* fixed fix4

* fixed fix5

* adding more tests with results dir changes

* adding more tests with changes

* refactor changes

* fix jrf result loc

* fixing jrf test

* exclude elasticlogging test

* fix jrf test

* fix jrf test

* fix jrf tests

* integration test changes to run with junit5

* refactoring

* create dir with root permissions

* run only quicktests for quicktests

* adding jrf tests

* initial version for JRf testsinparallel

* make getNewSuffixCnt synchronized and fix testClassName

* undo elasticlogging exclude

* Fixed a hanging issue jenkins-ignore

* change the pom.xml

* delete the old Jrf test class

* fixed fix6

* fixed fix7

* fix8

* code cleanup

* fix11

* fix11

* fix12

* fix13

* exclude itmonitoringexporter

* fix asserts in k8sUtils

* fix14

* fix15

* fix116

* fix17

* fix18

* fix19

* fix20

* switched back to master for monexp

* add junit properties file

* increasing global maxiterations

* merged changes

* comply with PV/dir/ structure

* fix elk test

* comment out setWaitTime calls

* merge to current changes

* adding sleep as huiling suggested

* skip elk test which is hanging

* undo skip elk test which is hanging

* remove explicit set of iteration

* add javadoc

* remove unused constants and files

* updated code based on review

* updated code based on review1

* updated code based on review2

* deleting old jrf tests and commenting hanging test

* fixed MonExporter test

* fixed MonExporter test1

* Fixed issues running in parallel jenkins-ignore

* fixed MonExporter test3

* undo skip test

* undo skip test

* trying threadcountclasses 5

* remove unlimited thread count

* set percorethreadcount to false

* fixed MonExporter test4

* refactor itoperator into smaller classes

* increase thread count to 7

* fix quicktest issue

* added back monitoring exporter

* fixed db

* fixed db1

* delete commented out comments

* delete commented out comments1

* fix surefire plugin version

* update to it pom.xml

* fixing ItmonitoringExporter and Jrf test

* commenting elastic logging test

* add pod name and timeout, junit config

* fix namespace

* test with two profiles

* thread count 10

* add back wls jrf profile

* adding two profiles

* fixed shutdowntests and monexp for junit5

* reduce thread count

* junit5

* junit5-1

* junit5-2

* adding ingress check

* add option to run parallel/sequential and fix failing test

* test

* test1

* test3

* test4

* adding cleanup in post-integration-test

* minor changes

* fixing README

* fixing README

* reverting the change

* Added request-timeout jenkins-ignore (#1344)

* remove duplicate test methods

* uncomment elastic search test

* changing to junit5

* add ability to take docker images url from env var

* use patch to update status (#1362)

* use patch to update status

* update domain status and log validation failures

* Remove UseContainerSupport and related option usage (#1368)

* Remove UseContainerSupport option usage

* Remove UseCGroupMemoryLimitForHeap option

* OWLS-78571 (Resolves #1252) - Config map not updated with new files on second run of create-domain.sh (#1367)

* replace contents of configmap if already exists

* replace contents of configmap if already exists

* Remove unneeded image pull secret (#1372)

* Revert "Remove unneeded image pull secret"

This reverts commit 46ff04967a16305867038b5be43986f8c9877781.

* add Traefik notice

* Removed order dependency for tests, added more checks to avoid intermittent failures (#1375)

* synchronize ns update in LB

* Synced up ItElasticlogging test jenkins-ignore

* Synced up ItElasticlogging test jenkins-ignore

* debugging

* conflict when creating LB. So adding synchronization

* v1 change for ItPodsRestart tests in parallel

* adding unique image attribute

* adding unique name for conflicting domain yaml file

* fixing coherence test

* fixing image name and coherence test

* updated tests to support parallel runs

* try synchronize one more time

* increased helm timeout

* skip statedump.sh as its failing

* corrected checkstyle issues

* remove syncrhonize at method level

* corrected checkstyle issues1

* checkstyle1

* undo pom.xml change

* checkstyle2

*  minor fix of exec order

* updated test to run in parallel

* fixed checkstyle

* uncommented one test, it will fails to run in paral

* fixed checkstyle

* switch between seq or parallel using var

* initial fix

* updated readme for parallel testing

* updated readme for parallel testing

* updated readme for parallel testing

* fixing the image name for dominimage

* Remove the tag

* Fix the image name pushing to registry

* convert SitConfig tests to run in paral

* Fixed Voyager issue when running StickySession test jenkins-ignore

* Fixed Voyager issue when running StickySession test 2 jenkins-ignore

* run against modified exporter branch temp

* Removed debugger from LoadBalance.java jenkins-ignore

* dir structure changes

* Added loop to wait Voyager gets ready jenkins-ignore

*  fixed mysql jdbs driver

* del unchanged test files

* pvroot dir creation

*  updated mysql creation

*  fixed typo

*  fixed typo1

* fix path

* itclass to lowercase

* fix sample test

* fix sample test

* updated version of Mon Exp, fixed SitConfig

* fixed checkstyle

* modify more tests

* fixed vars initializing

* fixed vars initializing1

* checkstyle

* initialize fix3

* initialize fix3

* fixed ns

* fixed ns1

* fixed dst

* fixed ns1

* fix1

* fix2

* fix3

* fixed fix4

* fixed fix5

* adding more tests with results dir changes

* adding more tests with changes

* refactor changes

* fix jrf result loc

* fixing jrf test

* exclude elasticlogging test

* fix jrf test

* fix jrf test

* fix jrf tests

* integration test changes to run with junit5

* refactoring

* create dir with root permissions

* run only quicktests for quicktests

* adding jrf tests

* initial version for JRf testsinparallel

* make getNewSuffixCnt synchronized and fix testClassName

* undo elasticlogging exclude

* Fixed a hanging issue jenkins-ignore

* change the pom.xml

* delete the old Jrf test class

* fixed fix6

* fixed fix7

* fix8

* code cleanup

* fix11

* fix11

* fix12

* fix13

* exclude itmonitoringexporter

* fix asserts in k8sUtils

* fix14

* fix15

* fix116

* fix17

* fix18

* fix19

* fix20

* switched back to master for monexp

* add junit properties file

* increasing global maxiterations

* merged changes

* comply with PV/dir/ structure

* fix elk test

* comment out setWaitTime calls

* merge to current changes

* adding sleep as huiling suggested

* skip elk test which is hanging

* undo skip elk test which is hanging

* remove explicit set of iteration

* add javadoc

* remove unused constants and files

* updated code based on review

* updated code based on review1

* updated code based on review2

* deleting old jrf tests and commenting hanging test

* fixed MonExporter test

* fixed MonExporter test1

* Fixed issues running in parallel jenkins-ignore

* fixed MonExporter test3

* undo skip test

* undo skip test

* trying threadcountclasses 5

* remove unlimited thread count

* set percorethreadcount to false

* fixed MonExporter test4

* refactor itoperator into smaller classes

* increase thread count to 7

* fix quicktest issue

* added back monitoring exporter

* fixed db

* fixed db1

* delete commented out comments

* delete commented out comments1

* fix surefire plugin version

* update to it pom.xml

* fixing ItmonitoringExporter and Jrf test

* commenting elastic logging test

* add pod name and timeout, junit config

* fix namespace

* test with two profiles

* thread count 10

* add back wls jrf profile

* adding two profiles

* fixed shutdowntests and monexp for junit5

* reduce thread count

* junit5

* junit5-1

* junit5-2

* adding ingress check

* fixed intermitent issues

* fixed intermitent issues1

* add option to run parallel/sequential and fix failing test

* fixed intermitent issues2

* fixed intermitent issues3

* fixed intermitent issues4

* test

* fix temp failures

* test1

* test3

* test4

* adding cleanup in post-integration-test

* minor changes

* fixing README

* fixing README

* reverting the change

* Added request-timeout jenkins-ignore (#1344)

* added branch ver

* added mon branch

* added mon branch1

* fixing interm issues

* interm fix

* interm fix1

* interm fix2

* fixed intem issues and order of exe

* clean up commented out code

*  combined basic func tests into one

* Verify configured secrets before running introspector (#1369)

* Verify weblogic credentials secret before running introspector

* fix codestyle errors

* enforce namespace restriction for weblogicCredentialsSecret

* Add validations for image pull and config override secrets

* search for secrets in domain namespace only

* Install image pull secret even without a cluster

* Clean up ConfigMap watcher map and log messages (#1376)

* update docs (#1345)

* update docs

* update script

* update WLS image version (#1357)

* Correct log messages for CM creation/replacement/exists and for security checks

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Avoid potential NPE

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor fix

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

Co-authored-by: Rosemary Marano <rosemary.marano@oracle.com>

* OWLS 72829: Separate JVM arguments for NM and server instance (#1373)

* initial implementation for separating JVM arguments for NM and server instances

* cleanup trace debug statements

* Changes based on review feedback

* removed extraneous '.'

* incorporated Rosemary Marano's documentation review changes

* added description for default values of USER_MEM_ARGS

* Remove extraneous '_'

* add SOA samples (#1371)

* add SOA samples

* edit SOA sample and delete images

* incorporate Samba comments

* Fix ItOperator testDomainOnPvUsingWdt test on external Jenkins (#1378)

* fix for itoperator test failure and npe

* make OCR user/password mandatory as its required for multi node cluster

* Opupgradefix (#1379)

* Fix the image property in operator map when running in shared cluster and
it has operatorImageName and operatorImageTag

* No need to have another if check, the presence of operatorImageName and
Tag should be enough to set the image params regardless where it is
running

* add FAQs for mapping PVC and ConfigMap to instances (#1381)

* add FAQs for mapping PVC and ConfigMap to instances

* Address initial review comments

* Quoted more names

* Nm mem args (#1382)

* set -Djava.security.egd=file:/dev/./urandom for Node Manager, if not defined

* update user guide to include defaulting information about java security property

* default memory and Java security values if NODEMGR_MEM_ARGS environment variable not defined

* Fix some of the intermittent failures on external jenkins (#1385)

* fix for itoperator test failure and npe

* make OCR user/password mandatory as its required for multi node cluster

* retry curl to fix intermittent failures on ext jenkins

* exclude itmonitoringexporter

* fixing dir check intermittent failure in external jenkins

* fix for intemittent NoRouteToHostException

* fix checkstyle errors

* remove monitoring exporter exclude

* Make getAdminService idempotent (#1383)

* Make getAdminService idempotent

* Only update status when it changes

* Introspect Test Fix: integration test PV directory cleanup now expects tests to be one directory deeper (#1387)

* increase DB connection attempts (#1386)

* Get NM thread dump if NM times out. Also fix NM .out dump to stdout. (#1388)

* Upgrade Kubernetes Java client to 7.0.0 (#1389)

* Move to client version 7.0.0

* Kubernetes java-client version 7.0.0

* Correct parameter

* Missing copyrights

* Disable unnecessary API client pooling

* Review comments

* fix kubectl cp with the latest FMW image (#1390)

* Fix use of dryRun (#1393)

* Fix WLDF scaling test that's failing with updated WebLogic image on OCR (#1391)

* fix for itoperator test failure and npe

* make OCR user/password mandatory as its required for multi node cluster

* retry curl to fix intermittent failures on ext jenkins

* exclude itmonitoringexporter

* fixing dir check intermittent failure in external jenkins

* fix for intemittent NoRouteToHostException

* fix checkstyle errors

* remove monitoring exporter exclude

* exclude monexp tests

* list dir

* list dir

* list dir

* list dir

* list dir

* list dir

* change permission on file

* using TestUtils for copy/cat

* using TestUtils for copy/cat

* undo mon exp exclude

* Made some changes to run MonExporter test in external Jenkins  (#1392)

* added changes to support extjen runs

* added changes to support extjen runs1

* fixed image policy

* fixed image policy1

* corrected secret gen

* deleted debug commands  (#1397)

*  comment out get pods k8s comm

*  comment out get pods k8s comm1

* cleanup

* [OWLS-79168] Run operator as non-root user (#1399)

* change operator to run with non-root user

* add user and group definitions

* reorder dockerfile to minimize image size

* fix broken link

* When patching fails, re-read the domain and recompute the patch (#1401)

* PR: Owls 79241 improve JRF domain cleanup logic (#1402)

* improve cleanup logic for JRF domain

* improve cleanup of JRF domain

* made conditional to create imagepull secret (#1403)

*  comment out get pods k8s comm

*  comment out get pods k8s comm1

* cleanup

* made conditional pull secret creation

* Helm3 owls 79158 (#1396)

* Add helm 3 support and update doc

* update doc for helm update command

* update doc wordings

* update doc

* update doc

* update doc

* update doc

* update doc

* change formatting and wordings

* capitalized Helm

* format change

* Fix formatting

* change formatting

* fix formatting

* Update cleanup.md

* Update create-domain.md

* Update namespace-management.md

* Update namespace-management.md

* Update namespace-management.md

* Update secrets.md

* Update certificates.md

* Update _index.md

* Update _index.md

* Update namespace-management.md

* Update _index.md

* Update cleanup.md

* Update prepare.md

* Update _index.md

* add apiVersion: v1 to Chart.yaml for helm 3 backward compatibility

* fixed bad character

* format change

* Update _index.md

* Update _index.md

* review and edit files

* Update _index.md

* Update install.md

Co-authored-by: Rosemary Marano <rosemary.marano@oracle.com>

* owls-77750 dedicated ns (#1384)

* Work in progress

* More changes and merge with develop

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More changes

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Work around issues with CRD validation and fix an installation test failure

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix installation test failure

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fixing installation test failure in Jenkins

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More change for dedicated in installation test

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* One more change

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor fix of nonresource security

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* update operator charts docs

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Workaround generated CRD yaml issue

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Move the generated crd to a different location

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Move generated crd

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix podresets permission error

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Check and skip access to cluster level resources and update copyright

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Improve security check code

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Cleanup cluster security checks and add log messages

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Update generated domain crd yaml and clean up logging

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add more logging

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add basic unit test cases for "dedicated"

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add doc contents plus cleanup

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Fix validation

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Turn off verify boolen for dedicated value

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* add unit tests

* Address review comments from Mark

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Address doc comments from Rosemary

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Rebuilt files

Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>
Co-authored-by: Russell Gold <russell.gold@oracle.com>

* Fix Helm tests

* Remove defunct test

* delete the domain in image created for the test (#1404)

* delete domain image for all domain in image tests at the end

* del image

* fix checkstyle

* fix copyright

* adding javadoc

* fix copyright

* Remove permissions to cluster-level resources (#1411)

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* merge 1408 into develop

* Change log to INFO and omit stack trace (#1410)

* Change log to INFO and omit stack trace

* correct log message

* Update CheckStyle plugin version and take latest rule set (#1417)

* WIP: updating checkstyle plugin and rules

* update checkstyle rules with derek

* WIP - fixing checkstyle violations

* fixing violations

* fixing violations

* fixing violations

* fixing violations

* style cleanup - after checkstyle update

* fixing violations

* style cleanup - after checkstyle update

* fixing violations

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* fixing violations

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* fixing violations

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* fixing violations

* fixing violations

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* fixing violations

* Update WeblogicApi

* Fix build

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* style cleanup - after checkstyle update

* Additional javadoc

* Resolve more CheckStyle errors

* Work in progress

* CheckStyle clean

* Copyright dates

Co-authored-by: Derek Sharpe <36005286+ddsharpe@users.noreply.github.com>
Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>

* Fixed image pull policy for external jenkin, added cleanup for wls image  (#1416)

* cleaned domain image, changed policy to Always

* fixed typos

* fixed typos1

* fixed typo3

* fixed typos4

* fixed checkstyle

* fixed grafana port number

Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>

* Owls79453 (#1418)

* change port range and connectexception string

* fix port range and remove unused method

* revert port change

Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>

* Update for new license format (#1420)

* Use deploy tool version 1.7.0 (#1421)

* Use deploy tooling release 1.7.0

* Revert unintended change

* Dependency and plugin version updates for 2.5.0 (#1423)

* Owls 79377 (#1407)

* Modified setup.sh to work with Helm 2.x/3.x

* Modified CopyRight Statement

* resolution to review comments

* Addressed more review comments

* modified helm search command and add functionality to add NameSpace if does not exits

* Modify the uninstall command for Helm 3.x

* Added support for Custom Voyager Version

* Explict Helm Version Check

* Explict Helm Version Check; Get the Voyager Doc Change from PR 1406

Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>

* jenkins-ignore - testing gitlab-ci

* jenkins-ignore - testing gitlab-ci

* Delete .gitlab-ci.yml

* New branch for Wit sample tests, using DomainMap to change image tag (#1424)

* New b ranch for WIT sample test jenkins-ignore

* New b ranch for WIT sample test jenkins-ignore

* Added the test to USECASES.MD jenkins-ignore

* fix copyright notice

* fix copyright notice

* fix copyright notice

* fix copyright notice

* fix copyright notice

Co-authored-by: Mark Nelson <mark.x.nelson@oracle.com>

* Fixed test to support different LB's (#1422)

* added support for other LBs

*  fixed checkstyle

* fixed string

* fixed lb

* added extra check

* fixed some logic

* fixed logic

* fixed checkstyle

* updated to newest grafana/prom versions

* fixed logic

* fixed logic1

* made promalertmager port generated

* fixed lb

* promval

* changed back grafana version due not compatable with tiller version

* changed back grafana version due not compatable with tiller version1

* updated grafana ver

* updated grafana ver1

* added condition for imagepull policy

*  modified shell script

*  reverted prom version

* merge 1425 to develop

* MARK: SOA doc merge (#1427)

* update docs (#1345)

* update docs

* update script

* Doc updates for SOA

* incorporated review comments for PR #1351

* Corrected link to soa index.md

* updated docs for review comments

* updated the latest links for pages

* update WLS image version (#1357)

* updated docs to resolve review comments

* add Traefik notice (#1374)

* Reverted the SOA documenatation related changes

* fix for SOA managed server startup failure issue (bug 30433422)

* added create-oracle-db-service code to SOA

* fix broken link (#1400)

* removed create-oracle-db-service code from this branch

* Updated SOA docs with latest information

* updated soa doc with latest db creation steps

* Remove the build badge which is not using https, does not have a (#1408)

valid cert, and which is not being used 'right' anyway - not
pointing to a consistent branch.

* create image with Image Tool (#1398)

* create image with Image Tool

* fix JDK version number

* FIX MISTAKES YIKES

* additional edits

* Added README.md for SOA

* Updated links

* mark is reviewing

* review edits

* mark is still editing

* update samples

* minor edits

* address review comments

Co-authored-by: Rosemary Marano <rosemary.marano@oracle.com>
Co-authored-by: Sambasiva Battagiri <52483425+sbattagi@users.noreply.github.com>

* Add weight to OCI FSS FAQ entry (#1428)

* pull updated fgaw from master:

* PR: Accommodate the latest FMW image change (#1419)

* fix the latest FMW image issue

* fix the latest FMW image issue

* fix the latest FMW image issue

* fix the latest FMW image issue

* fix the latest FMW image issue

* increase pod loop count

* fix a typo

* revert ItJrfPvWlst.java change

* copyright change

* resolve the conflicts

* Unit test support for Helm 2 and 3 (#1432)

* Unit test support for Helm 2 and 3

* Adjust helm version check for older versions

* Remove bad test

* cherrypick merge 1431 from master into develop

* Remove unnecessary privileges and run successfully with missing cluster privs (#1435)

* Reduce required and given privilege

* Fix Helm tests

* Update docs and prepare for privilege checking

* Reorganize namespace start so that security check information is available

* Remove unnecessary code and privileges

* Work in progress

* Don't watch namespaces on dedicated

* Finish skip or fail if not authorized

* Fix dedicated mode failures

* Rebuild files

* More doc updates for dedicated namespace (#1405)

* More doc updates for dedicated namespace

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Reword a sentence to address Rosemary's review comment.

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add notice to service-accounts.md pointing to "dedicated" namespaces.

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor formatting change

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* More doc update, and split the notice into two.

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Add one more sentence

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

* Minor format change

Signed-off-by: doxiao <dongbo.xiao@oracle.com>

Co-authored-by: Ryan Eberhard <ryan.eberhard@oracle.com>

* add check for dynamic-servers with no name element (#1434)

* Add /logs directory (#1436)

* Commented out ItMonitoringExporter test (#1438)

* added support for other LBs

*  fixed checkstyle

* fixed string

* fixed lb

* added extra check

* fixed some logic

* fixed logic

* fixed checkstyle

* updated to newest grafana/prom versions

* fixed logic

* fixed logic1

* made promalertmager port generated

* fixed lb

* promval

* changed back grafana version due not compatable with tiller version

* changed back grafana version due not compatable with tiller version1

* updated grafana ver

* updated grafana ver1

* added condition for imagepull policy

*  modified shell script

*  reverted prom version

* added ignore to skip the test

* Update supported versions before 2.5.0 release (#1437)

* Build charts

* Update WDT and WIT versions (#1441)

* Fix what is broken (#1443)

* No longer skip based on pre-auth

* Clarify when to run namespace vs cluster access checks

* Clean-up some more access check logs

* excluded MonExp via pom.xml

* Add comment

Co-authored-by: Marina Kogan <marina.kogan@oracle.com>

* Restore older version docs

* Remove dead code and add final modifiers (#1444)

* Remove dead code and add final modifiers

* Remove a few final designations that were modified by stubs in unit-tests

* Domain secret MD5 checksum. (#1445)

* Domain secret MD5 checksum.

* Domain secret MD5 checksum: fix to handle live upgrade case.

* cherrypick 1429 from master

* cherrypick 1448 from master

* Late version updates (#1449)

* Update javadoc

* Version updates

Co-authored-by: Antaryami Panigrahi <31135902+anpanigr@users.noreply.github.com>
Co-authored-by: Russell Gold <russell.gold@oracle.com>
Co-authored-by: Mark Nelson <mark.x.nelson@oracle.com>
Co-authored-by: Vanajakshi Mukkara <35709372+vanajamukkara@users.noreply.github.com>
Co-authored-by: Anthony Lai <anthony.lai@oracle.com>
Co-authored-by: Huiling Zhao <41090416+hzhao-github@users.noreply.github.com>
Co-authored-by: alan-cao <cao_yulong@hotmail.com>
Co-authored-by: Dongbo Xiao <dongbo.xiao@oracle.com>
Co-authored-by: Craig Perez <craig.perez@oracle.com>
Co-authored-by: Marina Kogan <marina.kogan@oracle.com>
Co-authored-by: Sambasiva Battagiri <52483425+sbattagi@users.noreply.github.com>
Co-authored-by: Derek Sharpe <36005286+ddsharpe@users.noreply.github.com>
Co-authored-by: Lenny Phan <33355669+lennyphan@users.noreply.github.com>
Co-authored-by: Rosemary Marano <rosemary.marano@oracle.com>
Co-authored-by: Michael Gianatassio <31552226+mgianatagh@users.noreply.github.com>
Co-authored-by: Bhavani Ravichandran <31928633+bhavaniravichandran@users.noreply.github.com>
Co-authored-by: Maggie He <maggie.he@oracle.com>
Co-authored-by: Tom Barnes <tom.barnes@oracle.com>
Co-authored-by: Sankar Periyathambi Neelakandan <45743425+sankarpn@users.noreply.github.com>
Co-authored-by: Johnny Shum <johnny.shum@oracle.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants