Applications, developed or curated by mika, ready to install using Helm.
- Kubernetes 1.19+
- Helm 3.2.0+
Add the repo to your local helm client.
helm repo add mika https://irfanhakim-as.github.io/charts
Update the repo to retrieve the latest versions of the packages.
helm repo update
Copy values.yaml
from the chart you would like to install. Replace $helm_chart
accordingly.
cp mika/$helm_chart/values.yaml .
Edit values.yaml
with the appropriate values.
nano values.yaml
Install the desired chart. Replace $release_name
, $helm_chart
and $namespace
accordingly.
helm install $release_name mika/$helm_chart --namespace $namespace --create-namespace --values values.yaml --wait
Verify that your chart has been installed. Replace $namespace
and $release_name
accordingly.
helm ls --namespace $namespace | grep "$release_name"
Uninstall the desired chart. Replace $release_name
and $namespace
accordingly.
helm uninstall $release_name --namespace $namespace --wait