This repository contains the Helm chart for deploying OpenAlgo.
Follow these steps to deploy the OpenAlgo Helm chart:
helm repo add openalgo-test https://helm.diyd2.in/
helm repo update
If you want to install into a specific namespace (e.g., openalgo):
kubectl create namespace openalgo
helm install openalgo openalgo-test/openalgo --debug --dry-run
helm install openalgo openalgo-test/openalgo
To install into a specific namespace, add -n openalgo to the command:
helm install openalgo openalgo-test/openalgo -n openalgo
To uninstall the release:
helm uninstall openalgo
If installed in a namespace:
helm uninstall openalgo -n openalgo
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.