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" apply_deployment "./template/backend"
configure_ingress configure_ingress
if [[ $environment == "local" ]]; then
echo "Minikube IP: http://$(minikube ip)"
fi
} }

View File

@@ -32,7 +32,7 @@ spec:
httpGet: httpGet:
path: /health path: /health
port: 8070 port: 8070
initialDelaySeconds: 240 initialDelaySeconds: 120
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health