Migrating to Corda Enterpriseenterprise-icon heading-link-icon

This section describes how to migrate an existing Corda deployment to Corda Enterprise by replacing the existing Corda Helm A package manager for Kubernetes, which is an open-source container orchestration platform. chart with the Enterprise Helm chart.

The following steps migrate an existing Corda deployment to Corda Enterprise, where the existing deployment has a Helm release name of HELM_RELEASE_NAME in the namespace KUBERNETES_NAMESPACE, installed with the overrides in the file values.yaml:

  1. Uninstall the Corda Helm release:

    helm uninstall $HELM_RELEASE_NAME --namespace $KUBERNETES_NAMESPACE
    
  2. Install the Corda Enterprise Helm release using the same values as the previous Corda installation but disabling automatic bootstrapping:

    helm install corda-enterprise corda-enterprise-5.1.0.0.tgz \
      --values values.yaml --namespace $KUBERNETES_NAMESPACE \
      --set bootstrap.db.enabled=false \
      --set bootstrap.kafka.enabled=false \
      --set bootstrap.rbac.enabled=false
    

If the original Corda installation used automatic bootstrapping to generate the salt and passphrase, the installation of Corda Enterprise must also be configured with the location of the generated values in the Kubernetes A powerful tool for managing containerized applications at scale, making it easier for teams to deploy and manage their applications with high reliability and efficiency. secret $HELM_RELEASE_NAME}-config. For example:

helm install corda-enterprise corda-enterprise-5.1.0.tgz \
  --values values.yaml --namespace $KUBERNETES_NAMESPACE \
  --set bootstrap.db.enabled=false \
  --set bootstrap.kafka.enabled=false \
  --set bootstrap.rbac.enabled=false \
  --set config.encyption.salt.valueFrom.secretKeyRef.name="${HELM_RELEASE_NAME}-config" \
  --set config.encyption.salt.valueFrom.secretKeyRef.key="salt" \
  --set config.encyption.passphrase.valueFrom.secretKeyRef.name="${HELM_RELEASE_NAME}-config" \
  --set config.encyption.passphrase.valueFrom.secretKeyRef.key="passphrase"

Was this page helpful?

Thanks for your feedback!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.

We're sorry this page wasn't helpful. Let us know how we can make it better!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Create an issue

Create a new GitHub issue in this repository - submit technical feedback, draw attention to a potential documentation bug, or share ideas for improvement and general feedback.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.