Skip to content

Commit db83a62

Browse files
authored
Clarify port-forwarding step for local dev (GoogleCloudPlatform#901)
1 parent 03a69d2 commit db83a62

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

docs/development-guide.md

+2-13
Original file line numberDiff line numberDiff line change
@@ -106,21 +106,10 @@ gcloud services enable monitoring.googleapis.com \
106106
107107
4. Run `kubectl get pods` to verify the Pods are ready and running.
108108
109-
5. Access the web frontend through your browser
110-
- **Minikube** requires you to run a command to access the frontend service:
109+
5. Run `kubectl port-forward deployment/frontend 8080:8080` to forward a port to the frontend service.
111110
112-
```shell
113-
minikube service frontend-external
114-
```
115-
116-
- **Docker For Desktop** should automatically provide the frontend at http://localhost:80
111+
6. Navigate to `localhost:8080` to access the web frontend.
117112
118-
- **Kind** does not provision an IP address for the service.
119-
You must run a port-forwarding process to access the frontend at http://localhost:8080:
120-
121-
```shell
122-
kubectl port-forward deployment/frontend 8080:8080
123-
```
124113
125114
## Cleanup
126115

0 commit comments

Comments
 (0)