Adds Minikube IP to Local Run

This commit is contained in:
2024-10-16 03:28:07 -03:00
parent af426a72e9
commit 7a65a62cf6
2 changed files with 5 additions and 1 deletions

View File

@@ -127,6 +127,10 @@ deploy_kubernetes() {
apply_deployment "./template/backend"
configure_ingress
if [[ $environment == "local" ]]; then
echo "Minikube IP: http://$(minikube ip)"
fi
}