Skip to content
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

[qfix] vl3-lb: add service name to dns request #9898

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/features/vl3-lb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ kubectl wait --for=condition=ready --timeout=2m pod -l type=vl3-client -n ns-vl3

Send an http-request from the finance-client:
```bash
kubectl exec deployments/finance-client -n ns-vl3-lb -- curl -s finance:8080 | grep "Hello! I'm finance-server"
kubectl exec deployments/finance-client -n ns-vl3-lb -- curl -s finance.vl3-lb:8080 | grep "Hello! I'm finance-server"
```
In the response you will see the name of the real server that performed the processing.
If you run the command above many times, you will see that load balancing occurs and the responses are returned by different handlers.
Expand Down