-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat(cli): allow user to set jvm options for Hedera nodes #84
Conversation
Unit Test Results 1 files ±0 13 suites ±0 23s ⏱️ ±0s Results for commit d7a6f84. ± Comparison against base commit fd0ee4b. This pull request removes 1 and adds 1 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
E2E Test Results 1 files ± 0 6 suites ±0 15m 26s ⏱️ + 2m 39s Results for commit d7a6f84. ± Comparison against base commit fd0ee4b. This pull request removes 700 and adds 700 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #84 +/- ##
=======================================
Coverage 63.72% 63.73%
=======================================
Files 27 27
Lines 2553 2570 +17
Branches 419 422 +3
=======================================
+ Hits 1627 1638 +11
- Misses 926 932 +6
|
e817281
to
038693e
Compare
7081196
to
3af16ad
Compare
7f20984
to
e663f90
Compare
3af16ad
to
5e21f91
Compare
@leninmehedy , just a thought, but if we created a persistent volume mount, we could just download one time and reduce the traffic |
e663f90
to
4ce84b6
Compare
Yes, hold on that thought. Please create a ticket to create persistent-volume and add your notes. PVC should be a high priority (maybe P1) |
Signed-off-by: Lenin Mehedy <[email protected]>
Signed-off-by: Lenin Mehedy <[email protected]>
Signed-off-by: Lenin Mehedy <[email protected]>
This is because fetching the platform zip file locally and then uploading to the container is time consuming and brittle. Signed-off-by: Lenin Mehedy <[email protected]>
Signed-off-by: Lenin Mehedy <[email protected]>
4ce84b6
to
d7a6f84
Compare
## [0.22.0](v0.21.2...v0.22.0) (2024-03-08) ### Features * **cli:** allow user to set jvm options for Hedera nodes ([#84](#84)) ([22ff35d](22ff35d)) * download helm binary based on os and platform architecture ([#128](#128)) ([e64e9a2](e64e9a2)) ### Bug Fixes * do checksum check after downloading platform zip file ([#125](#125)) ([3d91617](3d91617)) * updated incorrect log messages ([#132](#132)) ([d890974](d890974)) ### Performance Improvements * enhance account key update logic to batch transactions instead of loading all with sleep ([#105](#105)) ([e4bd1ef](e4bd1ef))
🎉 This PR is included in version 0.22.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
This pull request changes the following:
When node starts, JVM options are loaded from
/opt/hgcapp/services-Hedera/HapiApp2.0/application.env
Now user is able to set JVM options with flag
--application-env
flag.node start --application-env application.env
Related Issues