Skip to content
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

Add Docker restart policy #137

Merged
merged 27 commits into from
Jun 14, 2022
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4c38aa5
fixed IAM roles and code cleanup
prudhvigodithi May 5, 2022
fc041ac
Fix tests
prudhvigodithi May 5, 2022
41c65fe
Added assume role feature
prudhvigodithi May 6, 2022
4cf6d29
Added assume role feature
prudhvigodithi May 6, 2022
86999ec
Added assume role feature
prudhvigodithi May 6, 2022
e808ad2
Added assume role feature
prudhvigodithi May 6, 2022
56fe64c
Added assume role feature
prudhvigodithi May 6, 2022
a1e9910
Added 2 new plugins
prudhvigodithi May 6, 2022
c12219e
Add readme doc
prudhvigodithi May 6, 2022
570b290
Added docker resources
prudhvigodithi May 10, 2022
8f7c2df
Added docker resources
prudhvigodithi May 10, 2022
aedb6cb
Bump minor version
prudhvigodithi May 10, 2022
f9f8af9
change docker tag to 2.332.3-lts
prudhvigodithi May 10, 2022
9e209e2
added jenkinsOpts
prudhvigodithi May 10, 2022
95a3643
added jenkinsOpts
prudhvigodithi May 10, 2022
90f6beb
added jenkinsOpts
prudhvigodithi May 10, 2022
052467e
Added IAM required imports
prudhvigodithi May 12, 2022
fea9251
Added agent node unit tests
prudhvigodithi May 12, 2022
14c2746
Added agent node unit tests
prudhvigodithi May 12, 2022
757a192
Fixed conflicts
prudhvigodithi May 12, 2022
58018d7
fix agentAssumeRole
prudhvigodithi May 17, 2022
c1d9582
fix agentAssumeRole
prudhvigodithi May 17, 2022
2d90509
Ecr public
prudhvigodithi May 18, 2022
7b97d9d
Added AmazonSSMManagedInstanceCore
prudhvigodithi May 24, 2022
41e3f69
Merge branch 'opensearch-project:main' into main
prudhvigodithi May 24, 2022
9b16777
Merge branch 'opensearch-project:main' into main
prudhvigodithi Jun 14, 2022
a27f76e
added docker-compose restart policy
prudhvigodithi Jun 14, 2022
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
5 changes: 3 additions & 2 deletions resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: '3.8'
services:
jenkins:
image: opensearchstaging/jenkins:2.332.3-lts-jdk8
restart: on-failure
privileged: true
tty: true
user: root
Expand All @@ -17,10 +18,10 @@ services:
resources:
limits:
cpus: '4'
memory: 10000M
memory: '10g'
reservations:
cpus: '4'
memory: 10000M
memory: '10g'
logging:
driver: awslogs
options:
Expand Down