-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(substrate): enable platform deployment via ansible server
This commit introduces support for deploying a decentralized ledger technology (DLT) network using Ansible automation. The changes include: - Added a new network configuration file (`substrate-network-config.yaml`) to define nodes (Bootnode, Validator, Member, IPFS) within a single organization. - Updated the `deployment-network.yaml` to support the new network configuration. - Updated multiple Ansible roles, Helm release templates, and charts to align with the new network configuration. - Updated the user guide documentation to assist users/developers in correctly configuring the network. fixes #2547 Signed-off-by: saurabhkumarkardam <[email protected]>
- Loading branch information
1 parent
0784c24
commit 1b7c6fc
Showing
30 changed files
with
680 additions
and
396 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1296,6 +1296,9 @@ | |
}, | ||
"apiPort": { | ||
"type": "number" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
|
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
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
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
2 changes: 1 addition & 1 deletion
2
platforms/substrate/charts/dscp-ipfs-node/templates/secret.yaml
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,26 @@ | |
# This Chart is a fork from https://github.com/paritytech/helm-charts | ||
# Please update if needed | ||
############################################################################################## | ||
apiVersion: v1 | ||
|
||
--- | ||
apiVersion: v2 | ||
name: substrate-node | ||
description: A Helm chart to deploy Substrate/Polkadot nodes | ||
type: application | ||
version: 1.2.0 | ||
appVersion: "0.0.1" | ||
version: 1.0.0 | ||
appVersion: latest | ||
keywords: | ||
- bevel | ||
- ethereum | ||
- substrate | ||
- hyperledger | ||
- enterprise | ||
- blockchain | ||
- deployment | ||
- accenture | ||
home: https://hyperledger-bevel.readthedocs.io/en/latest/ | ||
sources: | ||
- https://github.com/hyperledger/bevel | ||
maintainers: | ||
- name: Hyperledger Bevel maintainers | ||
email: [email protected] |
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
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
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
Oops, something went wrong.