- Make sure you have Helm v3.x installed.
- Make sure you have access to a Kubernetes cluster.
- Navigate to the Helm chart directory
cd helm-project/charts/my-python-app
- Lint the chart to catch issues
helm lint
- Package the chart
helm package .
- Add the Bitnami Helm repo
helm repo add bitnami https://charts.bitnami.com/bitnami
- Install Redis with overridden values
helm install my-redis bitnami/redis --set usePassword=false
- Navigate to your Helm project directory
cd helm-project
- Deploy the chart
helm install my-python-app ./charts/my-python-app
- To check if your Python app is running, use:
kubectl get pods
- To check if Redis is running, use:
helm ls
To rollback a release, you can use:
helm rollback <RELEASE_NAME> <REVISION>