@@ -86,27 +86,27 @@ Complete guide to set up and run the Apollo Supergraph locally and in Kubernetes
8686| --------| ---------| -------| -------------|
8787| ` ./test-k8s.sh ` | ** Deployment validation** | Full deployment (subgraphs + router) | After ` ./run-k8s.sh ` |
8888| ` ./test-router.sh ` | ** Router testing** | Router only | When router is running |
89- | ` ./k8s- status.sh ` | ** Kubernetes status** | K8s resources in minikube | Check deployment status |
89+ | ` ./status-k8s .sh ` | ** Kubernetes status** | K8s resources in minikube | Check deployment status |
9090
9191### Kubernetes Status Monitoring
9292
93- The ` k8s- status.sh` script provides comprehensive status information about your Kubernetes deployment:
93+ The ` status-k8s .sh ` script provides comprehensive status information about your Kubernetes deployment:
9494
9595``` bash
9696# Show basic status
97- ./k8s- status.sh
97+ ./status-k8s .sh
9898
9999# Show detailed information
100- ./k8s- status.sh --detailed
100+ ./status-k8s .sh --detailed
101101
102102# Show only pod status
103- ./k8s- status.sh --pods
103+ ./status-k8s .sh --pods
104104
105105# Show only service status
106- ./k8s- status.sh --services
106+ ./status-k8s .sh --services
107107
108108# Show only ingress status
109- ./k8s- status.sh --ingress
109+ ./status-k8s .sh --ingress
110110```
111111
112112** What it shows:**
@@ -200,16 +200,13 @@ After deployment, the Apollo Router is accessible at:
200200- ** GraphQL Endpoint** : http://localhost:4000/graphql
201201- ** Health Check** : http://localhost:4000/health
202202
203- For Ingress access:
203+ For direct access to subgraphs :
204204``` bash
205- # Get minikube IP
206- minikube ip
207-
208- # Add to /etc/hosts (replace <minikube-ip> with actual IP)
209- echo " $( minikube ip) apollo-router.local" | sudo tee -a /etc/hosts
205+ # Port forward subgraphs service
206+ kubectl port-forward svc/subgraphs-service 4001:4001 -n apollo-supergraph
210207```
211208
212- Then access: http://apollo-router.local
209+ Then access: http://localhost:4001
213210
214211</details >
215212
0 commit comments