OpenAlgo Helm Chart

This repository contains the Helm chart for deploying OpenAlgo.

Helm Chart Deployment

Follow these steps to deploy the OpenAlgo Helm chart:

Prerequisites

1. Add the Helm Repository

helm repo add openalgo-test https://helm.diyd2.in/

2. Update the Helm Repositories

helm repo update

3. (Optional) Create a Namespace

If you want to install into a specific namespace (e.g., openalgo):

kubectl create namespace openalgo

4. Test the Installation with a Dry Run

helm install openalgo openalgo-test/openalgo --debug --dry-run

5. Install the Chart

helm install openalgo openalgo-test/openalgo

6. Uninstall the Chart

To uninstall the release:

helm uninstall openalgo

7. Additional Configuration

You can override default values using the --set flag or by providing a custom values.yaml file:

helm install openalgo openalgo-test/openalgo --set key=value
# or
helm install openalgo openalgo-test/openalgo -f my-values.yaml

For application specific information, refer to OpenAlgo project

For more details, refer to the Helm documentation.