@@ -315,9 +315,9 @@ function createFiles {
315
315
defaultImageName=" ` basename ${domainHomeImageBuildPath} | sed ' s/^[0-9]*-//' ` "
316
316
baseTag=${domainHomeImageBase#*: }
317
317
defaultImageName=${defaultImageName} :${baseTag:- " latest" }
318
- sed -i -e " s| %IMAGE_NAME%|${defaultImageName} | g" ${domainPropertiesOutput}
318
+ sed -i -e " s: %IMAGE_NAME%|${defaultImageName} : g" ${domainPropertiesOutput}
319
319
else
320
- sed -i -e " s| %IMAGE_NAME%|${image} | g" ${domainPropertiesOutput}
320
+ sed -i -e " s: %IMAGE_NAME%|${image} : g" ${domainPropertiesOutput}
321
321
fi
322
322
else
323
323
@@ -376,8 +376,8 @@ function createFiles {
376
376
sed -i -e " s:%EXPOSE_T3_CHANNEL_PREFIX%:${exposeAdminT3Channel} :g" ${createJobOutput}
377
377
# entries for Istio
378
378
sed -i -e " s:%ISTIO_PREFIX%:${istioPrefix} :g" ${createJobOutput}
379
- sed -i -e " s:%ISTIO_ENABLED%:${istioEnabled} | g" ${createJobOutput}
380
- sed -i -e " s:%ISTIO_READINESS_PORT%:${istioReadinessPort} | g" ${createJobOutput}
379
+ sed -i -e " s:%ISTIO_ENABLED%:${istioEnabled} : g" ${createJobOutput}
380
+ sed -i -e " s:%ISTIO_READINESS_PORT%:${istioReadinessPort} : g" ${createJobOutput}
381
381
382
382
# Generate the yaml to create the kubernetes job that will delete the weblogic domain_home folder
383
383
echo Generating ${deleteJobOutput}
@@ -441,9 +441,9 @@ function createFiles {
441
441
442
442
# now we know which image to use, update the domain yaml file
443
443
if [ -z $image ]; then
444
- sed -i -e " s| %WEBLOGIC_IMAGE%|${defaultImageName} | g" ${dcrOutput}
444
+ sed -i -e " s: %WEBLOGIC_IMAGE%|${defaultImageName} : g" ${dcrOutput}
445
445
else
446
- sed -i -e " s| %WEBLOGIC_IMAGE%|${image} | g" ${dcrOutput}
446
+ sed -i -e " s: %WEBLOGIC_IMAGE%|${image} : g" ${dcrOutput}
447
447
fi
448
448
else
449
449
sed -i -e " s:%WEBLOGIC_IMAGE%:${image} :g" ${dcrOutput}
0 commit comments