platforma-helm-charts

Artifact Hub Helm: v3

Helm Charts

This repository contains helm charts for Platforma

Current applications

Add a chart helm repository

Access a Kubernetes cluster.

Add a chart helm repository with follow commands:

helm repo add platforma https://milaboratory.github.io/platforma-helm-charts

helm repo update

Installing the chart

Export default values of platforma chart to file values.yaml:

helm show values platforma/platforma > values.yaml

Change the values according to the need of the environment in values.yaml file.

Test the installation with command:

helm install pl0 platforma/platforma -f values.yaml -n NAMESPACE --debug --dry-run

Install chart with command:

helm install pl0 platforma/platforma -f values.yaml -n NAMESPACE

Validate installation

Get the pods lists by running these commands:

kubectl get pods -A | grep 'platforma'

# or list all resorces of platforma

kubectl get all -n NAMESPACE | grep platforma

Get the application by running this commands:

helm list -f pl0 -n NAMESPACE

See the history of versions of platforma application with command.

helm history pl0 -n NAMESPACE

How to uninstall Platforma

Remove application with command.

helm uninstall pl0 -n NAMESPACE

Kubernetes compatibility versions

helm charts tested at kubernetes versions from 1.28 to 1.30.