Skip to content

Commit 0cdf5c6

Browse files
authored
more of Tom's suggestions
1 parent 2c5d78d commit 0cdf5c6

File tree

1 file changed

+7
-2
lines changed
  • kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv

1 file changed

+7
-2
lines changed

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,12 @@ $ kubectl create -f delete-domain-job.yaml
389389
1. Message: "status on iteration 20 of 20
390390
pod domain1-create-weblogic-sample-domain-job-4qwt2 status is Pending
391391
The create domain job is not showing status completed after waiting 300 seconds."
392-
* The most likely cause is related to the value of persistentVolumeClaimName, defined in domain-home-on-pv/create-domain-inputs.yaml. Change the value to weblogic-sample-pvc.
392+
* The most likely cause is related to the value of persistentVolumeClaimName, defined in domain-home-on-pv/create-domain-inputs.yaml.
393+
To find out if this is the problem, do the following:
394+
* execute `kubectl get all --all-namespaces` to find the name of the create weblogic sample domain job.
395+
* execute `kubectl describe pod <name-of-create-weblogic-sample-domain-job>` to see if there is an Event that has text similar to `persistentvolumeclaim "domain1-weblogic-sample-pvc" not found`
396+
* find the name of the pvc that was created by executing [create-pv-pvc.sh] (../../create-weblogic-domain-pv-pvc/README.md), using `kubectl describe pvc`. It is likely to be `weblogic-sample-pvc`
397+
Change the value of persistentVolumeClaimName to match the name created when you executed [create-pv-pvc.sh] (../../create-weblogic-domain-pv-pvc/README.md).
393398
* Verify that the operator is deployed. Use the command
394399
```
395400
kubectl get all --all-namespaces
@@ -410,7 +415,7 @@ Then you should [delete the resources for your sample domain](../../delete-domai
410415
create-domain.sh
411416
```
412417
A correct values for weblogicDomainStoragePath will meet the following requirements
413-
* owned by the useer that started the operator
418+
* owned by the user that started the operator
414419
* exists
415420
* is a directory
416421
3. Message: "ERROR: The create domain job will not overwrite an existing domain. The domain folder /shared/domains/domain1 already exists"

0 commit comments

Comments
 (0)