flaskapp

Deploying the basic Flask Web App using Helm Charts.

Add a new chart repository

helm repo add <name> <chart> <flags>
helm repo add flaskwebapp https://chhetrinabin.github.io/flaskapp

Installing the chart

helm install <release_name> <repo_name>/<chart_name>
helm install flask-release flaskwebapp/flaskapp

Uninstalling the chart

helm uninstall <release_name> <flags>
helm uninstall flask-release