This repository contains helm charts for Platforma
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
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
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
Remove application with command.
helm uninstall pl0 -n NAMESPACE
helm charts tested at kubernetes versions from 1.28 to 1.30.