File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils
kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ public void create() throws Exception {
370
370
cmd .append (userProjectsDir )
371
371
.append ("/weblogic-domains/" )
372
372
.append (domainUid )
373
- .append ("/domain-custom-resource .yaml" );
373
+ .append ("/domain.yaml" );
374
374
logger .info ("Running " + cmd );
375
375
ExecResult result = ExecCommand .exec (cmd .toString ());
376
376
if (result .exitValue () != 0 ) {
@@ -399,7 +399,7 @@ public void destroy() throws Exception {
399
399
cmd .append (userProjectsDir )
400
400
.append ("/weblogic-domains/" )
401
401
.append (domainUid )
402
- .append ("/domain-custom-resource .yaml" );
402
+ .append ("/domain.yaml" );
403
403
ExecResult result = ExecCommand .exec (cmd .toString ());
404
404
if (result .exitValue () != 0 ) {
405
405
throw new RuntimeException (
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ function initAndValidateOutputDir {
84
84
create-domain-inputs.yaml \
85
85
create-domain-job.yaml \
86
86
delete-domain-job.yaml \
87
- domain-custom-resource .yaml
87
+ domain.yaml
88
88
}
89
89
90
90
#
@@ -216,7 +216,7 @@ function initialize {
216
216
validationError " The template file ${deleteJobInput} for deleting a WebLogic domain_home folder was not found"
217
217
fi
218
218
219
- dcrInput=" ${scriptDir} /domain-custom-resource- template.yaml"
219
+ dcrInput=" ${scriptDir} /domain-template.yaml"
220
220
if [ ! -f ${dcrInput} ]; then
221
221
validationError " The template file ${dcrInput} for creating the domain custom resource was not found"
222
222
fi
@@ -283,7 +283,7 @@ function createYamlFiles {
283
283
284
284
createJobOutput=" ${domainOutputDir} /create-domain-job.yaml"
285
285
deleteJobOutput=" ${domainOutputDir} /delete-domain-job.yaml"
286
- dcrOutput=" ${domainOutputDir} /domain-custom-resource .yaml"
286
+ dcrOutput=" ${domainOutputDir} /domain.yaml"
287
287
288
288
enabledPrefix=" " # uncomment the feature
289
289
disabledPrefix=" # " # comment out the feature
File renamed without changes.
You can’t perform that action at this time.
0 commit comments