-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with k8s.io/docs/tasks/access-application-cluster/connecting-frontend-backend/ #8483
Comments
I will ask @juneharton to work on this. |
/assign @juneharton |
Thanks, @steveperry-53. @juneharton let me know if you need any clarification. |
Any updates @steveperry-53 @juneharton. |
@lucperkins are we adding watch switch to the requested doc? |
@jitendrabhalothia Yes. See pull request #9129 for the proposed changes. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
This is a...
Problem:
kubectl get service frontend
The external IP field may take some time to populate. If this is the case, the external IP is listed as .
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
frontend 10.51.252.116 80/TCP 10s
Repeat the same command again until it shows an external IP address:
Proposed Solution:
Let's not to say repeat the same command until it shows an external IP address, let's use the --watch switch
Now :
kubectl get service frontend --watch
Better to add "--watch " switch, for instance, "kubectl get service frontend --watch" instead of telling to keep executing the same command for recent updates in the pod state.
Page to Update:
https://kubernetes.io/docs/tasks/access-application-cluster/connecting-frontend-backend/
The text was updated successfully, but these errors were encountered: