├── fabric_helm ├── fabric-chart │ ├── Chart.yaml │ ├── templates │ │ ├── ca │ │ │ ├── _ca_dpy.tpl │ │ │ └── _ca_svc.tpl │ │ ├── cli │ │ │ └── _cli_dpy.tpl │ │ ├── common │ │ │ ├── _helpers.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _namespace.tpl │ │ │ ├── _pv.tpl │ │ │ └── _pvc.tpl │ │ ├── kafka │ │ │ ├── _kafka_dpy.tpl │ │ │ └── _kafka_svc.tpl │ │ ├── orderer.yaml │ │ ├── orderer │ │ │ ├── _orderer_default_dpy.tpl │ │ │ ├── _orderer_kafka_dpy.tpl │ │ │ └── _orderer_svc.tpl │ │ ├── peer.yaml │ │ ├── peer │ │ │ ├── _peer_dpy.tpl │ │ │ └── _peer_svc.tpl │ │ └── zookeeper │ │ │ ├── _zookeeper_dpy.tpl │ │ │ └── _zookeeper_svc.tpl │ └── values.yaml └── helmChartForFabric.pdf ├── fabric_multi_nodes └── FabricMultiNodev2-3.pdf └── fabric_on_kubernetes ├── Fabric-on-K8S └── setupCluster │ ├── cluster-config.yaml │ ├── configtx.yaml │ ├── generateALL.sh │ ├── templates │ ├── fabric_1_0_template_pod_ca.yaml │ ├── fabric_1_0_template_pod_cli.yaml │ ├── fabric_1_0_template_pod_namespace.yaml │ ├── fabric_1_0_template_pod_orderer.yaml │ └── fabric_1_0_template_pod_peer.yaml │ └── transform │ ├── __init__.py │ ├── config.py │ ├── delete.py │ ├── generate.py │ └── run.py └── FabricOnK8SAll.pdf /fabric_helm/fabric-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/Chart.yaml -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/ca/_ca_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/ca/_ca_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/ca/_ca_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/ca/_ca_svc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/cli/_cli_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/cli/_cli_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/common/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/common/_helpers.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/common/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/common/_ingress.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/common/_namespace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/common/_namespace.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/common/_pv.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/common/_pv.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/common/_pvc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/common/_pvc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/kafka/_kafka_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/kafka/_kafka_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/kafka/_kafka_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/kafka/_kafka_svc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/orderer.yaml -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/orderer/_orderer_default_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/orderer/_orderer_default_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/orderer/_orderer_kafka_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/orderer/_orderer_kafka_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/orderer/_orderer_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/orderer/_orderer_svc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/peer.yaml -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/peer/_peer_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/peer/_peer_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/peer/_peer_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/peer/_peer_svc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/zookeeper/_zookeeper_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/zookeeper/_zookeeper_dpy.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/templates/zookeeper/_zookeeper_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/templates/zookeeper/_zookeeper_svc.tpl -------------------------------------------------------------------------------- /fabric_helm/fabric-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/fabric-chart/values.yaml -------------------------------------------------------------------------------- /fabric_helm/helmChartForFabric.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_helm/helmChartForFabric.pdf -------------------------------------------------------------------------------- /fabric_multi_nodes/FabricMultiNodev2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_multi_nodes/FabricMultiNodev2-3.pdf -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/cluster-config.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/configtx.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/generateALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/generateALL.sh -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_ca.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_cli.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_namespace.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_orderer.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/templates/fabric_1_0_template_pod_peer.yaml -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/config.py -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/delete.py -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/generate.py -------------------------------------------------------------------------------- /fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/Fabric-on-K8S/setupCluster/transform/run.py -------------------------------------------------------------------------------- /fabric_on_kubernetes/FabricOnK8SAll.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hainingzhang/articles/HEAD/fabric_on_kubernetes/FabricOnK8SAll.pdf --------------------------------------------------------------------------------