This is specifically aimed at people wanting to set up an new environment for minikube - IT IS MY WAY - THERE ARE MANY
SO WHY -- I need to experiment with various configurations and combination for a very complex BareMetal custer
docs/MiniKubeInstallOnLinux.pdf
$ ./mkStartup.sh -- [this will do what is documented in the file]
$ minikube start and it should all come back
###$ You may want to run multiple nodes -- this can be seen in
$ docs/miniKubeEnhanced.pdf
Once your miniKube cluster is running you will want to get to the front-end to set up repos..
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
-- this will give you a "passcode"
kubectl get services -n argocd -- and you will see the port (443)
kubectl port-forward svc/argocd-server -n argocd 8080:443
you can see it in localhost:8080 [you mau use any port for the 8080 part]