mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Update FSAT to use Fabric 2.5 by default
This patch updates full-stack-asset-transfer to Fabric 2.5 by default. In particular, since k8s-builder-peer is set as the default value for peer image, it needs to be updated to use 0.11.0, which is derived from Fabric v2.5 image, as the version default value. Signed-off-by: Tatsuya Sato <tatsuya.sato.so@hitachi.com>
This commit is contained in:
parent
f8f52cab71
commit
5c020f2a71
2 changed files with 6 additions and 6 deletions
|
|
@ -3,8 +3,8 @@
|
|||
Remember to clone this repository!
|
||||
|
||||
```shell
|
||||
git clone https://github.com/hyperledgendary/full-stack-asset-transfer-guide.git workshop
|
||||
cd workshop
|
||||
git clone https://github.com/hyperledger/fabric-samples.git fabric-samples
|
||||
cd fabric-samples/full-stack-asset-transfer-guide
|
||||
export WORKSHOP_PATH=$(pwd)
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ function context() {
|
|||
export ${name}="${!override_name:-${default_value}}"
|
||||
}
|
||||
|
||||
context FABRIC_VERSION 2.5.0-beta2
|
||||
context FABRIC_CA_VERSION 1.5.5
|
||||
context FABRIC_VERSION 2.5.1
|
||||
context FABRIC_CA_VERSION 1.5.6
|
||||
|
||||
context CLUSTER_RUNTIME kind # or k3s for Rancher
|
||||
context CONTAINER_CLI docker # or nerdctl for containerd
|
||||
|
|
@ -77,8 +77,8 @@ context CA_IMAGE_LABEL ${FABRIC_CA_VERSION}
|
|||
# todo: use ghcr.io fabric-peer when k8s-builder is automatically deployed by the operator
|
||||
#context PEER_IMAGE ${FABRIC_CONTAINER_REGISTRY}/fabric-peer
|
||||
#context PEER_IMAGE_LABEL ${FABRIC_VERSION}
|
||||
context PEER_IMAGE ghcr.io/hyperledger-labs/k8s-fabric-peer
|
||||
context PEER_IMAGE_LABEL v0.8.0
|
||||
context PEER_IMAGE ghcr.io/hyperledger-labs/fabric-builder-k8s/k8s-fabric-peer
|
||||
context PEER_IMAGE_LABEL 0.11.0 # When using k8s-fabric-peer in Fabric v2.5+, 0.11.0+ should be specified
|
||||
context ORDERER_IMAGE ${FABRIC_CONTAINER_REGISTRY}/fabric-orderer
|
||||
context ORDERER_IMAGE_LABEL ${FABRIC_VERSION}
|
||||
context TOOLS_IMAGE ${FABRIC_CONTAINER_REGISTRY}/fabric-tools
|
||||
|
|
|
|||
Loading…
Reference in a new issue