-
Notifications
You must be signed in to change notification settings - Fork 724
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(r3-corda-ent): Upgrade to version 4.10
Changes: - 'Node' and 'Notary' nodes have been upgraded to version 4.10 (specifically, version 4.10.3) from 4.7. - Introduced a new Dockerfile, named node4.10.dockerfile, to build the version 4.10 image. - Updated the codebase to fetch the latest version 4.10 properly when the user defines it in the network configuration file. Additional changes: - Added the missing vault delete commands. - Fixed the code to delete the vault policy correctly. - Updated sample network configuration files to facilitate smooth deployment. fixes #2398 Signed-off-by: saurabhkumarkardam <[email protected]>
- Loading branch information
1 parent
94a63b5
commit 3290ea8
Showing
8 changed files
with
89 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,14 @@ network: | |
# Network level configuration specifies the attributes required for each organization | ||
# to join an existing network. | ||
type: corda-enterprise | ||
version: 4.7 # Hyperledger Bevel deployment supports node and notary enterprise 4.7 version (use older tag for other version supports) | ||
version: "4.7" # Hyperledger Bevel deployment supports node and notary enterprise 4.7 version (use older tag for other version supports) | ||
frontend: enabled #Flag for frontend to enabled for nodes/peers | ||
|
||
#Environment section for Kubernetes setup | ||
env: | ||
type: "dev" # tag for the environment. Important to run multiple flux on single cluster | ||
proxy: ambassador # value has to be 'ambassador' as 'haproxy' has not been implemented for Corda | ||
proxy_namespace: "ambassador" # Namespace required for Ambassador Edge-Stack deployment | ||
ambassadorPorts: # Any additional Ambassador ports can be given here, this is valid only if proxy='ambassador' | ||
portRange: # For a range of ports | ||
from: 15005 | ||
|
@@ -122,7 +123,7 @@ network: | |
tlscrlsigner: password | ||
truststore: | ||
truststore: trustpass | ||
rootca: password | ||
rootca: rootpassword | ||
ssl: password | ||
ssl: | ||
networkmap: password | ||
|
@@ -181,7 +182,7 @@ network: | |
serviceName: "O=Notary Service,OU=Notary1,L=London,C=GB" | ||
type: notary | ||
validating: true | ||
emailAddress: "[email protected]" | ||
emailAddress: "[email protected]" | ||
p2p: | ||
port: 10002 | ||
targetPort: 10002 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM corda/corda-enterprise:4.10.3-zulu-openjdk8-alpine | ||
USER root | ||
WORKDIR /opt/corda |