You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/integration-tests/bash/run.sh
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -706,7 +706,7 @@ function run_create_domain_job {
706
706
trace "WLS_JAVA_OPTIONS = \"$WLS_JAVA_OPTIONS\""
707
707
708
708
local PV="pv"
709
-
localPV_DIR="persistentVolume-${DOMAIN_UID}"
709
+
localSTORAGE_DIR="persistentVolume-${DOMAIN_UID}"
710
710
711
711
trace "Create $DOMAIN_UID in $NAMESPACE namespace "
712
712
@@ -747,7 +747,7 @@ function run_create_domain_job {
747
747
# Customize more configuration
748
748
sed -i -e "s/^persistenceVolumeName:.*/persistenceVolumeName: ${PV}/"$inputs
749
749
sed -i -e "s/^persistenceVolumeClaimName:.*/persistenceVolumeClaimName: $PV-claim/"$inputs
750
-
sed -i -e "s;^persistencePath:.*;persistencePath: $PV_ROOT/acceptance_test_pv/$PV_DIR;"$inputs
750
+
sed -i -e "s;^weblogicDomainStoragePath:.*;weblogicDomainStoragePath: $PV_ROOT/acceptance_test_pv/$STORAGE_DIR;"$inputs
751
751
sed -i -e "s/^domainUID:.*/domainUID: $DOMAIN_UID/"$inputs
752
752
sed -i -e "s/^clusterName:.*/clusterName: $WL_CLUSTER_NAME/"$inputs
753
753
sed -i -e "s/^namespace:.*/namespace: $NAMESPACE/"$inputs
@@ -762,7 +762,7 @@ function run_create_domain_job {
762
762
sed -i -e "s|#weblogicImagePullSecretName:.*|weblogicImagePullSecretName: ${WEBLOGIC_IMAGE_PULL_SECRET_NAME}|g"$inputs
763
763
fi
764
764
sed -i -e "s/^loadBalancerWebPort:.*/loadBalancerWebPort: $LOAD_BALANCER_WEB_PORT/"$inputs
765
-
sed -i -e "s/^loadBalancerDashboardPort:.*/loadBalancerAdminPort: $LOAD_BALANCER_DASHBOARD_PORT/"$inputs
765
+
sed -i -e "s/^loadBalancerDashboardPort:.*/loadBalancerDashboardPort: $LOAD_BALANCER_DASHBOARD_PORT/"$inputs
766
766
sed -i -e "s/^javaOptions:.*/javaOptions: $WLS_JAVA_OPTIONS/"$inputs
767
767
sed -i -e "s/^startupControl:.*/startupControl: $STARTUP_CONTROL/"$inputs
768
768
@@ -772,11 +772,11 @@ function run_create_domain_job {
772
772
fi
773
773
774
774
local outfile="${tmp_dir}/mkdir_physical_nfs.out"
775
-
trace "Use a job to create the k8s host directory \"$PV_ROOT/acceptance_test_pv/$PV_DIR\" that we will use for the domain's persistent volume, see \"$outfile\" for job tracing."
775
+
trace "Use a job to create the k8s host directory \"$PV_ROOT/acceptance_test_pv/$STORAGE_DIR\" that we will use for the domain's persistent volume, see \"$outfile\" for job tracing."
776
776
777
777
# Note that the job.sh job mounts PV_ROOT to /scratch and runs as UID 1000,
778
778
# so PV_ROOT must already exist and have 777 or UID=1000 permissions.
0 commit comments