From 612c6ac7a168095a518e60fe490bb8ad3ff21fc1 Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Tue, 7 Jan 2025 13:31:13 -0700 Subject: [PATCH] Be consistent with backticks --- .../how-to/traffic-management/upstream-settings.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/site/content/how-to/traffic-management/upstream-settings.md b/site/content/how-to/traffic-management/upstream-settings.md index 1ed7e862ff..fb8ef0e5ae 100644 --- a/site/content/how-to/traffic-management/upstream-settings.md +++ b/site/content/how-to/traffic-management/upstream-settings.md @@ -193,28 +193,28 @@ EOF Test the configuration: -You can send traffic to the coffee and tea applications using the external IP address and port for NGINX Gateway Fabric. +You can send traffic to the `coffee` and `tea` applications using the external IP address and port for NGINX Gateway Fabric. -Send a request to coffee: +Send a request to `coffee`: ```shell curl --resolve cafe.example.com:$GW_PORT:$GW_IP http://cafe.example.com:$GW_PORT/coffee ``` -This request should receive a response from the coffee Pod: +This request should receive a response from the `coffee` Pod: ```text Server address: 10.244.0.9:8080 Server name: coffee-76c7c85bbd-cf8nz ``` -Send a request to tea: +Send a request to `tea`: ```shell curl --resolve cafe.example.com:$GW_PORT:$GW_IP http://cafe.example.com:$GW_PORT/tea ``` -This request should receive a response from the tea Pod: +This request should receive a response from the `tea` Pod: ```text Server address: 10.244.0.9:8080 @@ -377,7 +377,7 @@ upstream default_coffee_80 { } ``` -Notice, that the tea upstream does not contain the `keepalive` directive, since the `upstream-keepalives` policy does not target the tea service: +Notice, that the `tea` upstream does not contain the `keepalive` directive, since the `upstream-keepalives` policy does not target the `tea` service: ```text upstream default_tea_80 {