# start minikube minikube start --kubernetes-version=v1.22.1 --driver=hyperkit --container-runtime=docker
# add repository helm repo add bitnami https://charts.bitnami.com/bitnami # install app helm install happy-panda bitnami/wordpress
# get URL minikube service happy-panda-wordpress # login # http://[domain]/wp-admin/ http://192.168.64.9:32644/wp-admin/ echo Username: user echo Password: $(kubectl get secret --namespace default happy-panda-wordpress -o jsonpath="{.data.wordpress-password}" | base64 --decode)