Scripts for managing the Magistrala IoT platform.
Make sure Helm is installed. If not, follow the Helm documentation to get started.
After installing Helm, add the Magistrala DevOps Helm repository by running:
helm repo add <name> https://absmach.github.io/devops/
-
Replace
<name>
with a repository alias of your choice. This alias will be used in future Helm commands.
Example:helm repo add magistrala-devops https://absmach.github.io/devops/
To install the Magistrala chart, run:
helm install my-magistrala magistrala-devops/magistrala --version 1.0.6
my-magistrala
: Choose a release name for the installation.magistrala-devops/magistrala
: Refers to the chart in the added repository.--version 1.0.6
: Installs version 1.0.6 of the chart.
To customize the installation, you can:
- Use the
--values
flag to provide a custom values file. - Use the
--set
flag for inline configuration changes.
If you’ve already added the Magistrala repo, update it to fetch the latest chart versions:
helm repo update
To search for charts by keyword in the repository:
helm search repo [keyword]
When you no longer need the chart, uninstall it by running:
helm uninstall my-magistrala
- Replace
my-magistrala
with the release name you used during installation. This command removes all resources created by the chart and clears the release history.
For further details, refer to the Magistrala Kubernetes documentation.
This project is licensed under the Apache-2.0.