Skip to content

Commit 612c6ac

Browse files
author
Kate Osborn
committed
Be consistent with backticks
1 parent 8b68e41 commit 612c6ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

site/content/how-to/traffic-management/upstream-settings.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,28 +193,28 @@ EOF
193193

194194
Test the configuration:
195195

196-
You can send traffic to the coffee and tea applications using the external IP address and port for NGINX Gateway Fabric.
196+
You can send traffic to the `coffee` and `tea` applications using the external IP address and port for NGINX Gateway Fabric.
197197

198-
Send a request to coffee:
198+
Send a request to `coffee`:
199199

200200
```shell
201201
curl --resolve cafe.example.com:$GW_PORT:$GW_IP http://cafe.example.com:$GW_PORT/coffee
202202
```
203203

204-
This request should receive a response from the coffee Pod:
204+
This request should receive a response from the `coffee` Pod:
205205

206206
```text
207207
Server address: 10.244.0.9:8080
208208
Server name: coffee-76c7c85bbd-cf8nz
209209
```
210210

211-
Send a request to tea:
211+
Send a request to `tea`:
212212

213213
```shell
214214
curl --resolve cafe.example.com:$GW_PORT:$GW_IP http://cafe.example.com:$GW_PORT/tea
215215
```
216216

217-
This request should receive a response from the tea Pod:
217+
This request should receive a response from the `tea` Pod:
218218

219219
```text
220220
Server address: 10.244.0.9:8080
@@ -377,7 +377,7 @@ upstream default_coffee_80 {
377377
}
378378
```
379379

380-
Notice, that the tea upstream does not contain the `keepalive` directive, since the `upstream-keepalives` policy does not target the tea service:
380+
Notice, that the `tea` upstream does not contain the `keepalive` directive, since the `upstream-keepalives` policy does not target the `tea` service:
381381

382382
```text
383383
upstream default_tea_80 {

0 commit comments

Comments
 (0)