Skip to content

Commit efdf719

Browse files
committed
Remove detailed ingress and service status checks from the workflow and add a note about endpoint availability after deployment.
1 parent 9a23dbb commit efdf719

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

.github/workflows/endpoints.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -83,27 +83,6 @@ jobs:
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')
@@ -112,3 +91,5 @@ jobs:
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."

0 commit comments

Comments
 (0)