Skip to content

Commit 81a5d4a

Browse files
update latest version in deployer config map template (#193)
Signed-off-by: MuthuSundaravadivel <[email protected]>
1 parent 8a1c4b2 commit 81a5d4a

File tree

9 files changed

+35
-35
lines changed

9 files changed

+35
-35
lines changed

defaultconfig/console/console.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ func GetImages() *deployer.ConsoleImages {
2727
ConsoleInitImage: "registry.access.redhat.com/ubi8/ubi-minimal",
2828
ConsoleInitTag: "latest",
2929
ConfigtxlatorImage: "hyperledger/fabric-tools",
30-
ConfigtxlatorTag: "2.2.5",
30+
ConfigtxlatorTag: "2.5.8",
3131
DeployerImage: "ghcr.io/ibm-blockchain/fabric-deployer",
3232
DeployerTag: "latest",
3333
CouchDBImage: "couchdb",
34-
CouchDBTag: "3.2.2",
34+
CouchDBTag: "3.3.3",
3535
}
3636
}

definitions/console/deployer-configmap.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,37 +45,37 @@ data:
4545
imagePullSecret: ""
4646
versions:
4747
ca:
48-
1.5.3-1:
48+
1.5.11-1:
4949
default: true
50-
version: 1.5.3-1
50+
version: 1.5.11-1
5151
image:
5252
caInitImage: registry.access.redhat.com/ubi8/ubi-minimal
5353
caInitTag: latest
5454
caImage: hyperledger/fabric-ca
55-
caTag: 1.5.3
55+
caTag: 1.5.11
5656
5757
peer:
58-
2.4.3-1:
58+
2.5.8-1:
5959
default: true
60-
version: 2.4.3-1
60+
version: 2.5.8-1
6161
image:
6262
peerInitImage: registry.access.redhat.com/ubi8/ubi-minimal
6363
peerInitTag: latest
6464
peerImage: hyperledger/fabric-peer
65-
peerTag: 2.4.3
65+
peerTag: 2.5.8
6666
couchdbImage: couchdb
67-
couchdbTag: 3.2.2
67+
couchdbTag: 3.3.3
6868
grpcwebImage: ghcr.io/hyperledger-labs/grpc-web
6969
grpcwebTag: latest
7070
orderer:
71-
2.4.3-1:
71+
2.5.8-1:
7272
default: true
73-
version: 2.4.3-1
73+
version: 2.5.8-1
7474
image:
7575
ordererInitImage: registry.access.redhat.com/ubi8/ubi-minimal
7676
ordererInitTag: latest
7777
ordererImage: hyperledger/fabric-orderer
78-
ordererTag: 2.4.3
78+
ordererTag: 2.5.8
7979
grpcwebImage: ghcr.io/hyperledger-labs/grpc-web
8080
grpcwebTag: latest
8181

integration/images.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
package integration
2020

2121
const (
22-
FabricCAVersion = "1.5.3"
23-
FabricVersion = "2.2.5"
24-
FabricVersion24 = "2.4.3"
22+
FabricCAVersion = "1.5.11"
23+
FabricVersion = "2.2.15"
24+
FabricVersion24 = "2.5.8"
2525
InitImage = "registry.access.redhat.com/ubi8/ubi-minimal"
2626
InitTag = "latest"
2727
CaImage = "hyperledger/fabric-ca"
@@ -35,7 +35,7 @@ const (
3535
ConfigtxlatorImage = "hyperledger/fabric-tools"
3636
ConfigtxlatorTag = FabricVersion24
3737
CouchdbImage = "couchdb"
38-
CouchdbTag = "3.2.2"
38+
CouchdbTag = "3.3.3"
3939
GrpcwebImage = "ghcr.io/hyperledger-labs/grpc-web"
4040
GrpcwebTag = "latest"
4141
ConsoleImage = "ghcr.io/hyperledger-labs/fabric-console"

operatorconfig/versions.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ import "github.com/IBM-Blockchain/fabric-operator/pkg/apis/deployer"
2323
const (
2424
InitImage = "registry.access.redhat.com/ubi8/ubi-minimal"
2525
LatestTag = "latest"
26-
FabricCAVersion = "1.5.3"
27-
FabricVersion = "2.4.3"
26+
FabricCAVersion = "1.5.11"
27+
FabricVersion = "2.5.8"
2828
)
2929

3030
func getDefaultVersions() *deployer.Versions {
3131
return &deployer.Versions{
3232
CA: map[string]deployer.VersionCA{
33-
"1.5.3-1": {
33+
"1.5.11-1": {
3434
Default: true,
35-
Version: "1.5.3-1",
35+
Version: "1.5.11-1",
3636
Image: deployer.CAImages{
3737
CAInitImage: InitImage,
3838
CAInitTag: LatestTag,
@@ -42,25 +42,25 @@ func getDefaultVersions() *deployer.Versions {
4242
},
4343
},
4444
Peer: map[string]deployer.VersionPeer{
45-
"2.4.3-1": {
45+
"2.5.8-1": {
4646
Default: true,
47-
Version: "2.4.3-1",
47+
Version: "2.5.8-1",
4848
Image: deployer.PeerImages{
4949
PeerInitImage: InitImage,
5050
PeerInitTag: LatestTag,
5151
PeerImage: "hyperledger/fabric-peer",
5252
PeerTag: FabricVersion,
5353
CouchDBImage: "couchdb",
54-
CouchDBTag: "3.2.2",
54+
CouchDBTag: "3.3.3",
5555
GRPCWebImage: "ghcr.io/hyperledger-labs/grpc-web",
5656
GRPCWebTag: LatestTag,
5757
},
5858
},
5959
},
6060
Orderer: map[string]deployer.VersionOrderer{
61-
"2.4.3-1": {
61+
"2.5.8-1": {
6262
Default: true,
63-
Version: "2.4.3-1",
63+
Version: "2.5.8-1",
6464
Image: deployer.OrdererImages{
6565
OrdererInitImage: InitImage,
6666
OrdererInitTag: LatestTag,

sample-network-multi-org/justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ check:
4848
CLUSTER_NAME := env_var_or_default("TEST_NETWORK_CLUSTER_NAME", "kind")
4949
NAMESPACE := env_var_or_default("TEST_NETWORK_NAMESPACE", "test-network")
5050
OPERATOR_IMAGE := env_var_or_default("TEST_NETWORK_OPERATOR_IMAGE", "ghcr.io/hyperledger-labs/fabric-operator:1.0")
51-
FABRIC_VERSION := env_var_or_default("TEST_NETWORK_FABRIC_VERSION", "2.5.0-beta")
52-
FABRIC_CA_VERSION := env_var_or_default("TEST_NETWORK_FABRIC_CA_VERSION", "1.5.6-beta3")
51+
FABRIC_VERSION := env_var_or_default("TEST_NETWORK_FABRIC_VERSION", "2.5.8")
52+
FABRIC_CA_VERSION := env_var_or_default("TEST_NETWORK_FABRIC_CA_VERSION", "1.5.11")
5353
CA_IMAGE := env_var_or_default("TEST_NETWORK_CA_IMAGE", "hyperledger/fabric-ca")
5454
CA_IMAGE_TAG := env_var_or_default("TEST_NETWORK_CA_IMAGE_TAG", FABRIC_CA_VERSION)
5555
PEER_IMAGE := env_var_or_default("TEST_NETWORK_PEER_IMAGE", "ghcr.io/hyperledger-labs/k8s-fabric-peer")

sample-network-multi-org/scripts/check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ else
8888
echo -e "${SUCCESS} jq found:\t\t$(cat /tmp/cmdpath)"
8989
fi
9090

91-
FABRIC_VERSION=2.5.0-beta
92-
FABRIC_CA_VERSION=1.5.6-beta3
91+
FABRIC_VERSION=2.5.8
92+
FABRIC_CA_VERSION=1.5.11
9393
if ! command -v peer &> /tmp/cmdpath
9494
then
9595
echo "${WARN} Please install the Fabric CLI binaries; suggested install commands:"

sample-network-multi-org/scripts/test-e2e.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ function destroyCluster() {
4646
}
4747

4848
# fabric CLI binaries + config
49-
FABRIC_VERSION=2.5.0-beta
50-
FABRIC_CA_VERSION=1.5.6-beta3
49+
FABRIC_VERSION=2.5.8
50+
FABRIC_CA_VERSION=1.5.11
5151

5252
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- binary --fabric-version $FABRIC_VERSION --ca-version $FABRIC_CA_VERSION
5353
export PATH=${PWD}/bin:$PATH

sample-network/network

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ function context() {
3131
export ${name}="${!override_name:-${default_value}}"
3232
}
3333

34-
context FABRIC_VERSION 2.4.4
35-
context FABRIC_CA_VERSION 1.5.5
34+
context FABRIC_VERSION 2.5.8
35+
context FABRIC_CA_VERSION 1.5.11
3636

3737
context CLUSTER_RUNTIME kind # or k3s for Rancher
3838
context CONTAINER_CLI docker # or nerdctl for containerd
@@ -85,7 +85,7 @@ context INIT_IMAGE_LABEL latest
8585
context GRPCWEB_IMAGE ghcr.io/hyperledger-labs/grpc-web
8686
context GRPCWEB_IMAGE_LABEL latest
8787
context COUCHDB_IMAGE couchdb
88-
context COUCHDB_IMAGE_LABEL 3.2.2
88+
context COUCHDB_IMAGE_LABEL 3.3.3
8989
context CONSOLE_IMAGE ghcr.io/hyperledger-labs/fabric-console
9090
context CONSOLE_IMAGE_LABEL latest
9191
context DEPLOYER_IMAGE ghcr.io/ibm-blockchain/fabric-deployer

testdata/deployercm/deployer-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ data:
6666
peerImage: fabric-peer
6767
peerTag: latest
6868
couchdbImage: fabric-couchdb
69-
couchdbTag: 3.2.2
69+
couchdbTag: 3.3.3
7070
grpcwebImage: fabric-grpcweb
7171
grpcwebTag: latest
7272

0 commit comments

Comments
 (0)