-
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: add node add-prepare and node add-execute commands #533
Merged
jeromy-cannon
merged 49 commits into
main
from
00522-reusable-components-of-subcommands-to-be-leveraged-for-sdk-testing
Sep 13, 2024
Merged
feat: add node add-prepare and node add-execute commands #533
jeromy-cannon
merged 49 commits into
main
from
00522-reusable-components-of-subcommands-to-be-leveraged-for-sdk-testing
Sep 13, 2024
Conversation
This file contains 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
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
…be-leveraged-for-sdk-testing # Conflicts: # src/commands/node.mjs
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
E2E Node PFX Kill Tests Coverage Report13 tests 13 ✅ 3m 4s ⏱️ Results for commit bde7ca3. |
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
…be-leveraged-for-sdk-testing # Conflicts: # src/commands/node.mjs
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
…be-leveraged-for-sdk-testing # Conflicts: # README.md # src/commands/flags.mjs # src/commands/node.mjs
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
…be-leveraged-for-sdk-testing
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
…be-leveraged-for-sdk-testing # Conflicts: # src/core/k8.mjs
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
E2E Node Add - Separate commands Tests Coverage Report11 tests 11 ✅ 5m 43s ⏱️ Results for commit 33424dd. ♻️ This comment has been updated with latest results. |
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Ivo Yankov <ivo@devlabs.bg>
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
jeromy-cannon
previously approved these changes
Sep 13, 2024
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
jeromy-cannon
approved these changes
Sep 13, 2024
swirlds-automation
added a commit
that referenced
this pull request
Sep 17, 2024
## [0.30.0](v0.29.0...v0.30.0) (2024-09-17) ### Features * add node add-prepare and node add-execute commands ([#533](#533)) ([a184775](a184775)) * add support for attach jvm debugger ([#549](#549)) ([35a0075](35a0075)) * add the autogen tool to easily add e2e tests and run it for the first time & fix copyFrom ([#566](#566)) ([e6c79eb](e6c79eb)) * **network node livecheck:** implement a functionality to determine network node activeness with prometheus metrics ([#567](#567)) ([6120775](6120775)) * remove pfx support ([#537](#537)) ([aff5f63](aff5f63)) ### Bug Fixes * aligned test names to naming pattern ([#554](#554)) ([365f724](365f724)) * download application.properties file if it was generated by hedera app during handling address book change ([#571](#571)) ([35c73d8](35c73d8)) * **functionality:** removed the 'z' from the 'tar' command on the K8.copyFrom ([#561](#561)) ([796474b](796474b)) * have update readme run after version calculation in deploy and release ([#586](#586)) ([42e1685](42e1685)) * jsdoc errors due to unrecognized format ([#557](#557)) ([da7113b](da7113b)) * remove of using agreement key in hedera repo test ([#563](#563)) ([05c5517](05c5517)) * separate repeated steps as individual functions ([#562](#562)) ([dcbbe5e](dcbbe5e))
🎉 This PR is included in version 0.30.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature Enhancement
Enhancing an existing feature driven by business requirements. Typically backwards compatible.
P0
An issue impacting production environments or impacting multiple releases or multiple individuals.
released
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.
Description
solo node add
into 3 new commands that can be executed separately and one after the other:solo node add-prepare
,solo node add-submit-transactions
,solo node add-execute
.--node-id
property and automatically sets it to the next number.--admin-key
property. If not present the genesis key will be used.The behaviour of the new commands is as follows:
Saves data from the
ctx
object to the specified directory by--output-dir
Loads data into the
ctx
object from the specified directory by--input-dir
Loads data into the
ctx
object from the specified directory by--input-dir
Related Issues