Add a new member to an existing organization¶
This guide explains how to add a new validator node to an existing organization in a Quorum network using two methods:
-
Using the
site.yamlplaybook: This playbook involves running an Ansible playbook that automates the process of adding a new org to the network. -
Using
helm install: This method involves using thehelm installcommands to directly add a new org to the network.
Method 1: Using the site.yaml playbook¶
-
Prerequisites
To add a new organization in Quorum, an existing quorum network should be running, enode information of all existing nodes present in the network should be available, genesis block should be available in base64 encoding and the geth information of a node should be available and that node account should be unlocked prior adding the new node to the existing quorum network.
Important
Addition of a new organization has been tested on an existing network which is created by Bevel. Networks created using other methods may be suitable but this has not been tested by Bevel team.
-
Create Configuration File
Refer this guide for details on editing the configuration file.
The
network.yamlfile should contain the specificnetwork.organizationdetails along with the enode information, genesis block in base64 encoding and geth account detailsNote
Make sure that the genesis block information is given in base64 encoding. Also, if you are adding node to the same cluster as of another node, make sure that you add the ambassador ports of the existing node present in the cluster to the network.yaml
For reference, sample
network-quorum-newnode.yamlfile here############################################################################################## # Copyright Accenture. All Rights Reserved. # # SPDX-License-Identifier: Apache-2.0 ############################################################################################## --- # yaml-language-server: $schema=../../../../platforms/network-schema.json # This is a sample configuration file for Quorum network which has 4 nodes. # All text values are case-sensitive network: # Network level configuration specifies the attributes required for each organization # to join an existing network. type: quorum version: 24.4.1 #this is the version of Quorum #Environment section for Kubernetes setup env: type: "dev" # tag for the environment. Important to run multiple flux on single cluster proxy: ambassador # value has to be 'ambassador' as 'haproxy' has not been implemented for Quorum # These ports are enabled per cluster, so if you have multiple clusters you do not need so many ports # This sample uses a single cluster, so we have to open 4 ports for each Node. These ports are again specified for each organization below ambassadorPorts: # Any additional Ambassador ports can be given here, this is valid only if proxy='ambassador' portRange: # For a range of ports from: 15010 to: 15043 # ports: 15020,15021 # For specific ports loadBalancerSourceRanges: # (Optional) Default value is '0.0.0.0/0', this value can be changed to any other IP adres or list (comma-separated without spaces) of IP adresses, this is valid only if proxy='ambassador' retry_count: 20 # Retry count for the checks on Kubernetes cluster external_dns: enabled # Should be enabled if using external-dns for automatic route configuration # Docker registry details where images are stored. This will be used to create k8s secrets # Please ensure all required images are built and stored in this registry. # Do not check-in docker_password. docker: url: "ghcr.io/hyperledger" username: "docker_username" password: "docker_password" # Following are the configurations for the common Quorum network config: consensus: "raft" # Options are "raft" and "ibft" ## Certificate subject for the root CA of the network. # This is for development usage only where we create self-signed certificates and the truststores are generated automatically. # Production systems should generate proper certificates and configure truststores accordingly. subject: "CN=DLT Root CA,OU=DLT,O=DLT,L=London,C=GB" transaction_manager: "tessera" # Options are "tessera" and "none" # This is the version of "tessera" tm_version: "23.4.0" tm_tls: "strict" # Options are "strict" and "off" tm_trust: "tofu" # Options are: "ca-or-tofu", "ca", "tofu" ## Transaction Manager nodes public addresses should be provided. # For "tessera", all participating nodes should be provided # In the example (for tessera ) below, the domain name is formed by the https://(peer.name).(org.external_url_suffix):(ambassador default port) tm_nodes: - "https://carrier.test.quorum.blockchaincloudpoc.com" - "https://manufacturer.test.quorum.blockchaincloudpoc.com" - "https://store.test.quorum.blockchaincloudpoc.com" - "https://warehouse.test.quorum.blockchaincloudpoc.com" staticnodes: "/home/user/bevel/build/quorum_staticnodes" # Location where staticnodes will be saved genesis: "/home/user/bevel/build/quorum_genesis" # Location where genesis file will be saved # NOTE when adding a new node, the above files must correspond to the existing network ##### Following keys are only used when adding new Node(s) to existing network and should NOT be used to create new network. bootnode: #name of the bootnode that matches one from existing node name: carrier #ambassador url of the bootnode url: carrierrpc.test.quorum.blockchaincloudpoc.com #rpc port of the bootnode rpcport: 80 #id of the bootnode nodeid: 1 # Allows specification of one or many organizations that will be connecting to a network. organizations: # Specification for the 1st organization. Each organization should map to a VPC and a separate k8s cluster for production deployments - organization: name: neworg unit: NewOrg external_url_suffix: test.quorum.blockchaincloudpoc.com # This is the url suffix that will be added in DNS recordset. Must be different for different clusters cloud_provider: aws # Options: aws, azure, gcp aws: access_key: "aws_access_key" # AWS Access key, only used when cloud_provider=aws secret_key: "aws_secret_key" # AWS Secret key, only used when cloud_provider=aws # Kubernetes cluster deployment variables. The config file path and name has to be provided in case # the cluster has already been created. k8s: context: "cluster_context" config_file: "cluster_config" # Hashicorp Vault server address and root-token. Vault should be unsealed. # Do not check-in root_token vault: url: "vault_addr" root_token: "vault_root_token" secret_path: "secretsv2" # Git Repo details which will be used by GitOps/Flux. # Do not check-in git_access_token gitops: git_protocol: "https" # Option for git over https or ssh git_url: "https://github.com/<username>/bevel.git" # Gitops https or ssh url for flux value files branch: "develop" # Git branch where release is being made release_dir: "platforms/quorum/releases/dev" # Relative Path in the Git repo for flux sync per environment. chart_source: "platforms/quorum/charts" # Relative Path where the Helm charts are stored in Git repo git_repo: "github.com/<username>/bevel.git" # Gitops git repository URL for git push username: "git_username" # Git Service user who has rights to check-in in all branches password: "git_access_token" # Git Server user password/token (Optional for ssh; Required for https) email: "git@email.com" # Email to use in git config private_key: "path_to_private_key" # Path to private key file which has write-access to the git repo (Optional for https; Required for ssh) # The participating nodes are named as peers services: peers: - peer: name: neworg subject: "O=Neworg,OU=Neworg,L=51.50/-0.13/London,C=GB" # This is the node subject. L=lat/long is mandatory for supplychain sample app type: member # value can be validator or member, only applicable if consensus = 'ibft' geth_passphrase: "12345" # Passphrase to be used to generate geth account lock: false # true or false: corresponds to, **geth --allow-insecure-unlock**, while starting up the node p2p: port: 21000 ambassador: 15014 #Port exposed on ambassador service (use one port per org if using single cluster) rpc: port: 8546 transaction_manager: port: 443 ambassador: 443 clientport: 8888 raft: # Only used if consensus = 'raft' port: 50401 ambassador: 15017 db: # Only used if transaction_manager = "tessera" port: 3306Below three new sections are added to the network.yaml
Field Description staticnodes Existing network's static nodes file path needs to be given genesis Existing network's genesis.json file path needs to be given bootnode Bootnode account details. The
network.config.bootnodefield contains:Field Description name Name of the bootnode url URL of the bootnode, generally the ambassador URL rpcport RPC port of the bootnode nodeid Node ID of the bootnode -
Run playbook
The site.yaml playbook is used to add a new organization to the existing network. This can be done using the following command
-
Verify network deployment
For instructions on how to troubleshoot network, read our troubleshooting guide
Method 2: Using helm install¶
For instructions on how to troubleshoot network, read [our troubleshooting guide](../../../../platforms/quorum/charts/README.md)
-
Get the genesis and static nodes from existing member and place in quorum-genesis/files
-
Install the quorum genesis chart
-
Install the besu-node chart