Skip to content

Support custom PVC, default domain home and default log home #453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 45 commits into from
Oct 27, 2018
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
de46cf9
Initial version for supporting custom PVC and shared PV
doxiao Oct 15, 2018
7362618
Modify operator code to handle shard domain home base
doxiao Oct 16, 2018
b627c49
Minor cleanup
doxiao Oct 16, 2018
559c184
More work on shared pv and modify integration test
doxiao Oct 18, 2018
a4fad10
Change WDT script for shared pv and null domainName in inputs
doxiao Oct 19, 2018
9fbda4c
Change default log home to /shared/logs/domainUID and domain home to …
doxiao Oct 19, 2018
27a8ab6
Redirect dynamic cluster server logs
doxiao Oct 19, 2018
01da6a3
Support redirect of dynamic cluster server logs when use WDT
doxiao Oct 19, 2018
409b599
Initial version for supporting custom PVC and shared PV
doxiao Oct 15, 2018
9f41b90
Modify operator code to handle shard domain home base
doxiao Oct 16, 2018
ae2c80d
Minor cleanup
doxiao Oct 16, 2018
8eea0e6
More work on shared pv and modify integration test
doxiao Oct 18, 2018
eb571d3
Change WDT script for shared pv and null domainName in inputs
doxiao Oct 19, 2018
3c6f2ca
Change default log home to /shared/logs/domainUID and domain home to …
doxiao Oct 19, 2018
c73abec
Redirect dynamic cluster server logs
doxiao Oct 19, 2018
9a16e27
Support redirect of dynamic cluster server logs when use WDT
doxiao Oct 19, 2018
9394ccd
Add label to pv and pvc
doxiao Oct 23, 2018
6b9a19b
Merge branch 'improve_samples_OOTB_experience' of https://github.com/…
doxiao Oct 23, 2018
c9ef1ef
Modify integration test scaling script
doxiao Oct 23, 2018
47923ac
Add default values
doxiao Oct 23, 2018
952de7e
Add check on domain resource creation
doxiao Oct 24, 2018
b1f6440
Modify java integration test 3 and 9
doxiao Oct 25, 2018
cc31b62
Initial version for supporting custom PVC and shared PV
doxiao Oct 15, 2018
4f174b5
Modify operator code to handle shard domain home base
doxiao Oct 16, 2018
84e9558
Minor cleanup
doxiao Oct 16, 2018
f9c3bb1
Merge branch 'develop' into improve_samples_OOTB_experience
doxiao Oct 25, 2018
ecf1a36
More work on shared pv and modify integration test
doxiao Oct 18, 2018
b286ba0
Change WDT script for shared pv and null domainName in inputs
doxiao Oct 19, 2018
a7c5cd0
Change default log home to /shared/logs/domainUID and domain home to …
doxiao Oct 19, 2018
5edb293
Redirect dynamic cluster server logs
doxiao Oct 19, 2018
cf33849
Support redirect of dynamic cluster server logs when use WDT
doxiao Oct 19, 2018
aa93e68
Initial version for supporting custom PVC and shared PV
doxiao Oct 15, 2018
306c7d9
Modify operator code to handle shard domain home base
doxiao Oct 16, 2018
f0ce3b7
Minor cleanup
doxiao Oct 16, 2018
8bf9e4a
More work on shared pv and modify integration test
doxiao Oct 18, 2018
61293de
Change default log home to /shared/logs/domainUID and domain home to …
doxiao Oct 19, 2018
b5d7b25
Add label to pv and pvc
doxiao Oct 23, 2018
9568768
Modify integration test scaling script
doxiao Oct 23, 2018
e4c8da2
Add default values
doxiao Oct 23, 2018
5858f7e
Add check on domain resource creation
doxiao Oct 24, 2018
3c63164
Modify java integration test 3 and 9
doxiao Oct 25, 2018
a246ea3
Modify java integration test
doxiao Oct 25, 2018
00985a5
Merge branch 'improve_samples_OOTB_experience' of https://github.com/…
doxiao Oct 25, 2018
4078d21
Modify integration test to keep the current behavior
doxiao Oct 25, 2018
9912112
Temporarily make the domainName and domainUID the same in java integr…
doxiao Oct 25, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add check on domain resource creation
Signed-off-by: doxiao <dongbo.xiao@oracle.com>
  • Loading branch information
doxiao committed Oct 24, 2018
commit 952de7ea8fdd14c1a67c2bc52fc464213521b6f0
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,10 @@ function printSummary {
#
function createDomainResource {
kubectl apply -f ${dcrOutput}
DCR_AVAIL=`kubectl get domain -n ${namespace} | grep ${domainUID} | wc | awk ' { print $1; } '`
if [ "${DCR_AVAIL}" != "1" ]; then
fail "The domain custom resource ${domainUID} was not found"
fi
}

#
Expand Down