Custom Search

Saturday, May 9, 2020

How to Deploy App on Minikube

curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 > get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh

helm repo list
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo list
helm install redis bitnami/redis

helm delete redis
helm repo remove bitnami

No comments:

Post a Comment