-
Notifications
You must be signed in to change notification settings - Fork 0
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 JRE dependency to Java components #11
base: master
Are you sure you want to change the base?
Conversation
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.
PR Summary
This PR integrates a Java LPM (LocalStack Package Manager) package across the LocalStack codebase, removing the default system-wide JRE installation and making each component responsible for its required Java version.
- Removed system-wide JRE installation from Dockerfile, shifting responsibility to individual components
- Added Java dependencies to DynamoDB, EventRuler, OpenSearch, Elasticsearch, StepFunctions, and Kinesis Connector
- Specified different Java versions for components (e.g., Java 11 for OpenSearch, Java 8 for Elasticsearch)
- Updated environment variable setup and JVM initialization processes in affected components
- Modified package installers to include Java installation as part of their preparation steps
10 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings
elasticsearch_installer = elasticsearch_package.get_installer(self.version) | ||
java_home = java_package.get_installer(elasticsearch_installer.java_version).get_java_home() |
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.
style: Consider using a constant for the default Java options
Background
localstack#11139 introduced a Java LPM package that can install and manage multiple LTS versions of JRE.
This PR integrates this package across the codebase.
Changes