File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed
weblogic-azure-aks/src/main/arm/scripts
weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/scripts Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4545
4646jobs :
4747 preflight :
48- runs-on : gurucicdrunner
48+ runs-on : ubuntu-latest
4949 steps :
5050 - name : Checkout azure-javaee-iaas
5151 uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export constAdminT3AddressEnvName="T3_TUNNELING_ADMIN_ADDRESS"
99export constAdminServerName=' admin-server'
1010export constClusterName=' cluster-1'
1111export constClusterT3AddressEnvName=" T3_TUNNELING_CLUSTER_ADDRESS"
12+ export constDefaultJavaOptions=" -Dlog4j2.formatMsgNoLookups=true -Dweblogic.StdoutDebugEnabled=false" # the java options will be applied to the cluster
1213export constFalse=" false"
1314export constTrue=" true"
1415
Original file line number Diff line number Diff line change 8888 - name: CUSTOM_DOMAIN_NAME
8989 value: "${wlsDomainName} "
9090 - name: JAVA_OPTIONS
91- value: "-Dweblogic.StdoutDebugEnabled=false ${javaOptions} "
91+ value: "${constDefaultJavaOptions} ${javaOptions} "
9292 - name: USER_MEM_ARGS
9393 value: "-Djava.security.egd=file:/dev/./urandom -Xms256m -Xmx512m -XX:MinRAMPercentage=25.0 -XX:MaxRAMPercentage=50.0 "
9494 - name: MANAGED_SERVER_PREFIX
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ while [ $index -lt ${envLength} ]; do
182182 index=$(( index+ 1 ))
183183
184184 if [[ " ${envItemName} " == " JAVA_OPTIONS" ]]; then
185- envItemValue=" \" -Dweblogic.StdoutDebugEnabled=false ${javaOptions} \" "
185+ envItemValue=" \" ${constDefaultJavaOptions} ${javaOptions} \" "
186186 fi
187187
188188 # do not copy value from SSL_ env
Original file line number Diff line number Diff line change @@ -589,4 +589,4 @@ echo "Waiting for admin server to be available"
589589wait_for_admin
590590echo " Weblogic admin server is up and running"
591591
592- disableRemoteAnonymousRequests
592+ disableRemoteAnonymousRequests
You can’t perform that action at this time.
0 commit comments