You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Change From
- name: DB_USERNAMEvalue: "root"# Change To
- name: DB_USERNAMEvalue: "dbadmin"
Step-06: Deploy User Management Microservice and Test
# Deploy all Manifests
kubectl apply -f kube-manifests/
# List Pods
kubectl get pods
# Stream pod logs to verify DB Connection is successful from SpringBoot Application
kubectl logs -f <pod-name>
Step-07: Access Application
# Capture Worker Node External IP or Public IP
kubectl get nodes -o wide
# Access Application
http://<Worker-Node-Public-Ip>:31231/usermgmt/health-status
Step-08: Clean Up
# Delete all Objects created
kubectl delete -f kube-manifests/
# Verify current Kubernetes Objects
kubectl get all