fabric-samples/test-network-k8s/docs
Mark S. Lewis 80a29f44af
Update Fabric to v2.5.15 and v3.1.4 (#1385)
These Fabric versions resolve compatibility issues with Docker engine
v29.

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
2026-02-27 11:14:28 +09:00
..
images Run the fabric test network on Kubernetes (#498) 2021-10-06 15:50:39 +00:00
APPLICATIONS.md Update k8s CC builder to v7.2; Use *.localho.st loopback domain; Optionally bind docker reg to 0.0.0.0 (#811) 2022-08-08 12:05:48 +01:00
BFT_ORDERERS.md Update Fabric to v2.5.15 and v3.1.4 (#1385) 2026-02-27 11:14:28 +09:00
CA.md Fix typos and broken links in docs (#712) 2022-04-18 09:36:49 -04:00
CALIPER.md Add document about how to benchmark the performance using Hyperledger Caliper (#1238) 2024-07-17 17:46:23 +09:00
CHAINCODE.md Minor fixes and improvements to test-network-k8s (#849) 2022-10-26 05:43:26 -04:00
CHAINCODE_AS_A_SERVICE.md Feature/fabric builder k8s (#739) 2022-05-26 13:52:25 +01:00
CHANNELS.md Update k8s CC builder to v7.2; Use *.localho.st loopback domain; Optionally bind docker reg to 0.0.0.0 (#811) 2022-08-08 12:05:48 +01:00
HIGH_AVAILABILITY.md Fix typos and broken links in docs (#712) 2022-04-18 09:36:49 -04:00
KUBERNETES.md Update samples to use Fabric v2.5.0-beta2 by default (#1006) 2023-03-17 13:17:39 +00:00
README.md test-network-k8s: Add documentation for initial BFT orderer support (#1297) 2025-01-30 14:20:18 +00:00
TEST_NETWORK.md Update samples to use Fabric v2.5.0-beta2 by default (#1006) 2023-03-17 13:17:39 +00:00

Kubernetes Test Network

Starting in release 2.0, Hyperledger introduced the test-network to serve as both an accelerator and learning resource for running Fabric networks. In addition to providing a study guide for operational patterns, the test-network provided a baseline environment for members of the Fabric community to quickly get up to speed with a working, local system, author smart contracts, and develop simple blockchain applications.

As a supplement to the docker-compose based test-network, this guide presents an equivalent Fabric network suitable for running sample applications and chaincode, developing Gateway and Chaincode-as-a-Service applications, and harmonizing CI and deployment flows with a unified container framework - Kubernetes.

Similar to Fabric, Kubernetes introduces a steep learning curve and presents a dizzying array of operational flexibility. In this guide, we'll outline the design considerations in the ./network scripts, provide a supplement to the Fabric CA Deployment Guide, and build up to a reference model for realistic production deployments on Kubernetes.

Ahoy!

Network Topology

The Kube test network establishes as consortium among a dedicated ordering organization and two peer organizations. Participation in the network is managed over a channel, and transactions are committed to the blockchain ledgers by invoking the asset-transfer-basic Chaincode-as-a-Service running in a shared Kubernetes namespace.

Test Network

Detailed Guides