-
Notifications
You must be signed in to change notification settings - Fork 721
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
[indy] enable platform deployment via ansible server #2574
Merged
sownak
merged 2 commits into
hyperledger-bevel:develop
from
saurabhkumarkardam:indy-2557
Jun 12, 2024
Merged
[indy] enable platform deployment via ansible server #2574
sownak
merged 2 commits into
hyperledger-bevel:develop
from
saurabhkumarkardam:indy-2557
Jun 12, 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
saurabhkumarkardam
requested review from
sownak,
suvajit-sarkar,
jagpreetsinghsasan,
arsulegai,
weihong-ou and
adityajoshi12
as code owners
June 5, 2024 07:35
saurabhkumarkardam
force-pushed
the
indy-2557
branch
4 times, most recently
from
June 10, 2024 07:16
b76b7e3
to
3ab2216
Compare
sownak
requested changes
Jun 10, 2024
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.
Code looks fine, but do the necessary changes for trustee and endorser object (should not be just a string).
platforms/hyperledger-indy/configuration/samples/network-indyv3-aries.yaml
Outdated
Show resolved
Hide resolved
platforms/hyperledger-indy/configuration/samples/network-indyv3-aries.yaml
Outdated
Show resolved
Hide resolved
saurabhkumarkardam
force-pushed
the
indy-2557
branch
2 times, most recently
from
June 11, 2024 07:33
5b4eb54
to
34720eb
Compare
sownak
reviewed
Jun 11, 2024
This commit introduces support for deploying a decentralized ledger technology (DLT) network using Ansible automation. The changes include: 1. Updated the Ansible codebase to support network deployment in respect of the standalone Helm chart. 2. The following Ansible roles have been introduced to appropriately deploy the network: - 1. Generate keys for each node of each organization. - 2. Fetch generated keys in JSON format to deploy genesis with known nodes only. - 3. Utilize keys stored in the JSON file to configure the genesis with known nodes and then install the genesis block. - 4. A secondary genesis setup is also included to support deployment in multiple namespaces for a multi-organization Indy network. - 5. Deploy stewards for all organizations. - 6. Deploy the endorser. 3. Updated the Reset Ansible code to delete each node's key from the vault, along with the organization policy and Authentication engine. 4. Added an individual role to clean all the network-supported local files (JSON files). 5. Updated the sample network configuration file to provide information on which networks can be deployed using this file and how to customize the network by following the network rules specified in the file itself. This PR will allow users to set an Indy network with support of the following rules: 1. Exactly 1 trustee is required per organization. 2. Up to 1 endorser is allowed per organization. 3. At least 4 stewards are required collectively across the entire Indy network. fixes hyperledger-bevel#2557 Signed-off-by: saurabhkumarkardam <[email protected]>
saurabhkumarkardam
force-pushed
the
indy-2557
branch
from
June 11, 2024 09:45
34720eb
to
2c5cba9
Compare
sownak
approved these changes
Jun 11, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Commit to be reviewed
feat(indy): enable platform deployment via ansible-server
fixes #2557