Deployment of Example Bank
Helm Chart Deployment of OpenG2P Example Bank Simulator
Prerequisites
Before deploying the Helm charts, ensure that the following prerequisites are met:
Kubernetes Cluster: A Kubernetes cluster is up and running. You can use any Kubernetes provider.
Helm CLI: Helm CLI installed. Version 3.x or higher is recommended. You can install Helm using the official Helm installation guide.
Access to Docker Hub: Ensure that Docker Hub can be accessed to pull the required container images.
Configured Values: Update the
values.yaml
file with any custom settings needed for your deployment, including image versions, credentials, hostnames, etc.
Deployment Steps
1. Clone the GitHub Repository
2. Install Helm Dependencies
3. Install the Helm Chart
Replace
openg2p-g2p-example-bank
with the desired release name.Replace
namespace
with your kubernetes namespace.Use the
-f
flag to provide custom configurations through avalues.yaml
file.
4. Update Values File (Optional)
To customize the configuration, update the values.yaml
file. Here's a sample of what you might want to configure:
Set the hostname, Docker image tags, and various other configurations to match your environment.
5. Check the Deployment
After running the install command, ensure that all pods and services are running correctly.
6. Updating the Helm Release
If changes are made to the values.yaml
or any part of the Helm chart, use the following command to upgrade the release:
7. Uninstalling the Chart
To remove the deployment, run the following:
This will delete all Kubernetes resources associated with the release.
Last updated