Skip to content

Update helloworld README with note on Envoy IPv4 only #1482

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions net/grpc/gateway/examples/helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,18 @@ static_resources:
> address: docker.for.mac.localhost
> ```

> NOTE: As per
> [Envoy - Envoy Networking](ttps://www.envoyproxy.io/docs/envoy/latest/start/quick-start/run-envoy#envoy-networking),
> if your environment does not enable IPv6, enable only IPv4 in the cluster
> by adding the `dns_lookup_family: V4_ONLY` field:
>
> ```yaml
> ...
> clusters:
> - name: greeter_service
> dns_lookup_family: V4_ONLY
> ```

## Write Client Code

Now, we are ready to write some client code! Put this in a `client.js` file.
Expand Down