Skip to main content

A production ready, complete experience in deploying a Hyperledger Fabric

Project description

AKC-MAMBA manuals

1. Installation Instructions

a. Edit configuration files

First, copy the content of config/operator.env-template to be config/.env. This file will contain all modifiable configuration of Mamba.

cp ./config/operator.env-template ./config/.env

Update configuration parameters in config/.env, the file content is pretty much self-explained.

b. Install required packages

Install required Python3 modules with

pip3 install -r requirements.txt

We now can use the Mamba tool to prepare required helm and k8s components

find . -type f -iname "*.sh" -exec chmod +x {} \;
python3 mamba.py environment

c. Deploy and bootstrap network

python3 mamba.py start

The mamba start command executes a series of sub commands that installs various network components. For more information on each command for individual components, please refer to help section

python3 mamba.py help

To terminate the network, just run

python3 mamba.py terminate

2. Development Guide

2.1 Project structure

Mamba makes use of Click_, an elegant python package for creating command line interfaces. The project structure is depicted in the tree below.

.
├── command_group_1
│   ├── commands.py
│   ├── __init__.py
│
├── utils
│   ├── __init__.py
│   ├── kube.py
│
├── mamba.py
├── settings.py

There are 4 main components:

  • mamba.py : The bootstrap instance module of Mamba
  • settings.py : Contains global variables that are shared accross all sub modules
  • command_group : Each command group is separated into its own directory.
  • utils : helper functions that must be initialized via settings.py

2.2 Coding Convention

Please follow PEP8 - Style guide for Python Code.

Another example can be found here

There are several notes that are different with other languages

Function names should be lowercase, with words separated by underscores as necessary to improve readability.

Camel case is for class name

2.3 Logging instruction

A snake must know how hiss ... or sometimes rattle.

Normally we can just use echo to print out message during execution However:

  • It is mandatory to hiss when there is error
  • also, rattle is needed when a snake meet something ... at the beginning or at the end of an execution.

For more information about logging, please follow the standard convention in mamba/utils/hiss.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

akc-mamba-1.1.0.tar.gz (21.5 kB view hashes)

Uploaded Source

Built Distribution

akc_mamba-1.1.0-py3-none-any.whl (41.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page