We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c486e40 commit cf1154cCopy full SHA for cf1154c
net/grpc/gateway/examples/helloworld/README.md
@@ -172,6 +172,18 @@ static_resources:
172
> address: docker.for.mac.localhost
173
> ```
174
175
+> NOTE: As per
176
+> [Envoy - Envoy Networking](ttps://www.envoyproxy.io/docs/envoy/latest/start/quick-start/run-envoy#envoy-networking),
177
+> if your environment does not enable IPv6, enable only IPv4 in the cluster
178
+> by adding the `dns_lookup_family: V4_ONLY` field:
179
+>
180
+> ```yaml
181
+> ...
182
+> clusters:
183
+> - name: greeter_service
184
+> dns_lookup_family: V4_ONLY
185
+> ```
186
+
187
## Write Client Code
188
189
Now, we are ready to write some client code! Put this in a `client.js` file.
0 commit comments