Welcome to the Helm Charts repository for nullplatform. This repository hosts packaged Helm charts and serves them via GitHub Pages.
To add this Helm repository to your Helm client, use the following command:
helm repo add nullplatform https://nullplatform.github.io/helm-charts
helm repo update
This will add the repository and make the charts available for installation.
You can list the charts available in this repository by running:
helm search repo nullplatform
This will display all available charts and their versions.
To install a chart from this repository, use the following command:
helm install <release-name> nullplatform/<chart-name> --version <chart-version>
For example, to install the base
chart, you can run:
helm install my-release nullplatform/base --version 1.0.0
Replace <release-name>
, <chart-name>
, and <chart-version>
with your desired values.
To upgrade an existing Helm release to a new version of a chart, use the helm upgrade
command:
helm upgrade <release-name> nullplatform/<chart-name> --version <new-chart-version>
For example:
helm upgrade my-release nullplatform/base --version 1.1.0
To uninstall or delete a Helm release, use the following command:
helm uninstall <release-name>
For example:
helm uninstall my-release
If new charts or chart versions are added to this repository, you should run the following command to update your local cache of the repository:
helm repo update
This ensures that you have the latest list of charts and versions from this repository.
If you'd like to contribute to this repository by adding new charts or improving existing ones, please fork the repository, make your changes, and submit a pull request.
Thank you for using the nullplatform Helm Charts repository!