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