File tree Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Original file line number Diff line number Diff line change 8383 echo ""
8484 echo "🌐 NGINX Ingress Controller: $NGINX_LB"
8585
86- echo ""
87- echo "================= DETAILED INGRESS STATUS ================="
88- echo "All Ingress Resources:"
89- kubectl get ingress -A -o wide 2>/dev/null || echo "No ingress resources found"
90- echo ""
91- echo "Monitoring Namespace Ingress Details:"
92- kubectl describe ingress -n ${{ inputs.monitoring_namespace }} 2>/dev/null || echo "No ingress in monitoring namespace"
93-
94- echo ""
95- echo "================= SERVICE STATUS ================="
96- echo "Monitoring Services (should be ClusterIP):"
97- kubectl get svc -n ${{ inputs.monitoring_namespace }} -l app.kubernetes.io/instance=kube-prometheus-stack 2>/dev/null || echo "No monitoring services found"
98-
99- echo ""
100- echo "All LoadBalancer Services:"
101- kubectl get svc -A --field-selector spec.type=LoadBalancer -o wide 2>/dev/null || echo "No LoadBalancer services found"
102-
103- echo ""
104- echo "NGINX Ingress Controller Status:"
105- kubectl get svc -n ingress-nginx -o wide 2>/dev/null || echo "NGINX Ingress Controller not found"
106-
10786 echo ""
10887 echo "================= DEFAULT CREDENTIALS ================="
10988 ARGOCD_PASS=$(kubectl -n ${{ inputs.argocd_namespace }} get secret argocd-initial-admin-secret -o jsonpath='{.data.password}' 2>/dev/null | base64 -d || echo 'Not found')
11291 echo "Grafana -> Username: admin"
11392 echo "Grafana -> Password: ${{ secrets.GRAFANA_PASSWORD }}"
11493 echo "Prometheus -> No login needed (anonymous access by default)"
94+ echo ""
95+ echo "⚠️ Note: These endpoints might take a few minutes to become available after deployment."
You can’t perform that action at this time.
0 commit comments