@@ -349,9 +349,9 @@ function createFiles {
349
349
defaultImageName=" ` basename ${domainHomeImageBuildPath} | sed ' s/^[0-9]*-//' ` "
350
350
baseTag=${domainHomeImageBase#*: }
351
351
defaultImageName=${defaultImageName} :${baseTag:- " latest" }
352
- sed -i -e " s| %IMAGE_NAME%|${defaultImageName} | g" ${domainPropertiesOutput}
352
+ sed -i -e " s: %IMAGE_NAME%|${defaultImageName} : g" ${domainPropertiesOutput}
353
353
else
354
- sed -i -e " s| %IMAGE_NAME%|${image} | g" ${domainPropertiesOutput}
354
+ sed -i -e " s: %IMAGE_NAME%|${image} : g" ${domainPropertiesOutput}
355
355
fi
356
356
else
357
357
@@ -410,8 +410,8 @@ function createFiles {
410
410
sed -i -e " s:%EXPOSE_T3_CHANNEL_PREFIX%:${exposeAdminT3Channel} :g" ${createJobOutput}
411
411
# entries for Istio
412
412
sed -i -e " s:%ISTIO_PREFIX%:${istioPrefix} :g" ${createJobOutput}
413
- sed -i -e " s:%ISTIO_ENABLED%:${istioEnabled} | g" ${createJobOutput}
414
- sed -i -e " s:%ISTIO_READINESS_PORT%:${istioReadinessPort} | g" ${createJobOutput}
413
+ sed -i -e " s:%ISTIO_ENABLED%:${istioEnabled} : g" ${createJobOutput}
414
+ sed -i -e " s:%ISTIO_READINESS_PORT%:${istioReadinessPort} : g" ${createJobOutput}
415
415
416
416
# Generate the yaml to create the kubernetes job that will delete the weblogic domain_home folder
417
417
echo Generating ${deleteJobOutput}
@@ -482,9 +482,9 @@ function createFiles {
482
482
483
483
# now we know which image to use, update the domain yaml file
484
484
if [ -z $image ]; then
485
- sed -i -e " s| %WEBLOGIC_IMAGE%|${defaultImageName} | g" ${dcrOutput}
485
+ sed -i -e " s: %WEBLOGIC_IMAGE%|${defaultImageName} : g" ${dcrOutput}
486
486
else
487
- sed -i -e " s| %WEBLOGIC_IMAGE%|${image} | g" ${dcrOutput}
487
+ sed -i -e " s: %WEBLOGIC_IMAGE%|${image} : g" ${dcrOutput}
488
488
fi
489
489
else
490
490
sed -i -e " s:%WEBLOGIC_IMAGE%:${image} :g" ${dcrOutput}
0 commit comments