-
Notifications
You must be signed in to change notification settings - Fork 216
PR: server scope podrestart-java-integ-test #978
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
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
84d82ba
initial version for server scope podrestart
maggiehe00 e1d5799
Merge branch 'develop' into podrestart-java-integ-test
maggiehe00 491830a
minor modification
maggiehe00 40296df
Merge remote-tracking branch 'origin/develop' into podrestart-java-in…
maggiehe00 8531631
javadoc and minor change
maggiehe00 c240e67
minor code refactoring
maggiehe00 1a223cd
Merge remote-tracking branch 'origin/develop' into podrestart-java-in…
maggiehe00 fb34c37
update README.md
maggiehe00 a13d3ed
format
maggiehe00 71e1f47
remove one hard sleep
maggiehe00 655328e
Merge remote-tracking branch 'origin/develop' into podrestart-java-in…
maggiehe00 a8519d9
jenkins-ignore javadoc update
maggiehe00 7011ae1
revise the code to supply only fragment of domain yaml file with adde…
maggiehe00 572399a
update README.md
maggiehe00 bfa884b
javadoc update
maggiehe00 ab056c8
refactor the code
maggiehe00 d74e7b7
javadoc update
maggiehe00 a4018e3
merge to the latest develop branch
maggiehe00 9123e80
Merge remote-tracking branch 'origin/develop' into podrestart-java-in…
maggiehe00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
integration-tests/src/test/resources/cont.security.context.domain.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Add podSecurityContext section at ServerPod Level | ||
# Make sure all pod(s) re-started | ||
#serverPod: | ||
# containerSecurityContext: | ||
# runAsUser: 1000 | ||
# fsGroup: 1000 | ||
# The generated server pods should look like: | ||
#spec: | ||
# containers: | ||
# - name: weblogic.server | ||
# securityContext: | ||
|
||
serverPod: | ||
containerSecurityContext: | ||
runAsUser: 1000 | ||
fsGroup: 1000 | ||
env: | ||
- name: JAVA_OPTIONS | ||
value: "-Dweblogic.StdoutDebugEnabled=false" | ||
- name: USER_MEM_ARGS | ||
value: "-Djava.security.egd=file:/dev/./urandom -Xms64m -Xmx256m " | ||
volumes: | ||
- name: weblogic-domain-storage-volume | ||
persistentVolumeClaim: | ||
claimName: domainpodsrestart-weblogic-sample-pvc | ||
volumeMounts: | ||
- mountPath: /shared | ||
name: weblogic-domain-storage-volume | ||
|
29 changes: 29 additions & 0 deletions
29
integration-tests/src/test/resources/pod.security.context.domain.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Add podSecurityContext section at ServerPod Level | ||
# Make sure all pod(s) re-started | ||
#serverPod: | ||
# podSecurityContext: | ||
# runAsUser: 1000 | ||
# fsGroup: 2000 | ||
# The generated server pods should look like: | ||
#spec: | ||
# securityContext: | ||
# runAsUser: 1000 | ||
# fsGroup: 2000 | ||
|
||
serverPod: | ||
podSecurityContext: | ||
runAsUser: 1000 | ||
fsGroup: 2000 | ||
env: | ||
- name: JAVA_OPTIONS | ||
value: "-Dweblogic.StdoutDebugEnabled=false" | ||
- name: USER_MEM_ARGS | ||
value: "-Djava.security.egd=file:/dev/./urandom -Xms64m -Xmx256m " | ||
volumes: | ||
- name: weblogic-domain-storage-volume | ||
persistentVolumeClaim: | ||
claimName: domainpodsrestart-weblogic-sample-pvc | ||
volumeMounts: | ||
- mountPath: /shared | ||
name: weblogic-domain-storage-volume | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As you are already executing a command, you can change it to
instead of saving the file and looking for a string later..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done