-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(substrate): platform deployment via Helm
This pull request introduces enhanced functionality to deploy the Substrate platform using Helm charts. Several improvements have been made to streamline the process and increase readability: 1. Substrate-genesis: - The substrate-genesis Helm chart now dynamically generates keys and updates the genesis.json file accordingly. - Eliminates the need for the substrate-key-chart Helm chart, achieving the same functionality within the substrate-genesis chart. - Once the entire Substrate codebase is updated, substrate-key-mgmt can be safely removed. 2. Substrate-node: - The substrate-node chart handles node deployment, simplifying the overall process. - Improved readability and maintainability by removing the repetetive code and containers such as node-secrets, retrieve-chain-spec, inject-keys, and query-services. - Their functionalities have been incorporated into the main container responsible for starting the node. 3. dscp-ipfs-node - Updated for deployment via Helm. 4. A README.md has been added at the path ./platform/substrate/charts/ to provide guidance for deploying the Substrate platform via Helm. These enhancements aim to streamline Substrate deployment via Helm, making the process more efficient and the codebase easier to manage. fixes #2484 Signed-off-by: saurabhkumarkardam <[email protected]>
- Loading branch information
1 parent
2122220
commit 1bcbf68
Showing
19 changed files
with
962 additions
and
709 deletions.
There are no files selected for viewing
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
14 changes: 14 additions & 0 deletions
14
platforms/substrate/charts/dscp-ipfs-node/requirements.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
dependencies: | ||
- name: dscp-node | ||
alias: dscpNode | ||
repository: https://digicatapult.github.io/helm-charts/ | ||
tags: | ||
- dscp-node | ||
version: 4.x.x | ||
condition: dscpNode.enabled | ||
- name: bevel-storageclass | ||
alias: storage | ||
repository: "file://../../../shared/charts/bevel-storageclass" | ||
tags: | ||
- storage | ||
version: ~1.0.0 |
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 |
---|---|---|
|
@@ -3,19 +3,24 @@ | |
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
############################################################################################## | ||
apiVersion: v2 | ||
apiVersion: v1 | ||
name: substrate-genesis | ||
appVersion: 'latest' | ||
description: A Helm chart to generate the genesis for Substrate Nodes | ||
version: 1.0.0 | ||
type: application | ||
annotations: | ||
hyperledger-bevel/platform: substrate | ||
licenses: Apache-2.0 | ||
home: https://github.com/hyperledger/bevel | ||
version: 1.0.0 | ||
appVersion: latest | ||
keywords: | ||
- DSCP | ||
- BEVEL | ||
- SUBSTRATE | ||
- 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] |
Oops, something went wrong.