Skip to content

Commit a411723

Browse files
committed
Revert find and replace
1 parent 4d0e5a3 commit a411723

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

articles/application-gateway/for-containers/how-to-header-rewrite-gateway-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Once the gateway is created, create an HTTPRoute that listens for hostname conto
170170
171171
In this example, we look for the user agent used by the Bing search engine and simplify the header to SearchEngine-BingBot for easier backend parsing.
172172
173-
This example also demonstrates addition of a new header called `Application Gateway for Containers-Header-Add` with a value of `Application Gateway for Containers-value` and removes a request header called `client-custom-header`.
173+
This example also demonstrates addition of a new header called `AGC-Header-Add` with a value of `AGC-value` and removes a request header called `client-custom-header`.
174174

175175
> [!TIP]
176176
> For this example, while we can use the HTTPHeaderMatch of "Exact" for a string match, a demonstration is used in regular expression for illistration of further capabilities.
@@ -201,8 +201,8 @@ spec:
201201
- name: user-agent
202202
value: SearchEngine-BingBot
203203
add:
204-
- name: Application Gateway for Containers-Header-Add
205-
value: Application Gateway for Containers-value
204+
- name: AGC-Header-Add
205+
value: AGC-value
206206
remove: ["client-custom-header"]
207207
backendRefs:
208208
- name: backend-v2

articles/application-gateway/for-containers/how-to-header-rewrite-ingress-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Once the Ingress is created, next we need to define an IngressExtension with the
171171
172172
In this example, we set a static user-agent with a value of `rewritten-user-agent`.
173173

174-
This example also demonstrates addition of a new header called `Application Gateway for Containers-Header-Add` with a value of `Application Gateway for Containers-value` and removes a request header called `client-custom-header`.
174+
This example also demonstrates addition of a new header called `AGC-Header-Add` with a value of `AGC-value` and removes a request header called `client-custom-header`.
175175

176176
> [!TIP]
177177
> For this example, while we can use the HTTPHeaderMatch of "Exact" for a string match, a demonstration is used in regular expression for illistration of further capabilities.
@@ -193,8 +193,8 @@ spec:
193193
- name: "user-agent"
194194
value: "rewritten-user-agent"
195195
add:
196-
- name: "Application Gateway for Containers-Header-Add"
197-
value: "Application Gateway for Containers-value"
196+
- name: "AGC-Header-Add"
197+
value: "AGC-value"
198198
remove:
199199
- "client-custom-header"
200200
EOF

articles/application-gateway/for-containers/how-to-url-redirect-gateway-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ Via the response we should see:
430430
< HTTP/1.1 301 Moved Permanently
431431
< location: https://contoso.com/
432432
< date: Mon, 26 Feb 2024 22:56:23 GMT
433-
< server: Microsoft-Azure-Application-LB/Application Gateway for Containers
433+
< server: Microsoft-Azure-Application-LB/AGC
434434
< content-length: 0
435435
<
436436
* Connection #0 to host contoso.com left intact
@@ -461,7 +461,7 @@ Via the response we should see:
461461
< HTTP/2 302
462462
< location: https://contoso.com/shop/category/5
463463
< date: Mon, 26 Feb 2024 22:58:43 GMT
464-
< server: Microsoft-Azure-Application-LB/Application Gateway for Containers
464+
< server: Microsoft-Azure-Application-LB/AGC
465465
<
466466
* Connection #0 to host contoso.com left intact
467467
```

articles/application-gateway/for-containers/session-affinity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following steps are depicted in the previous diagram:
4141

4242
In managed cookie affinity type, Application Gateway uses predefined values when the cookie is offered to the client.
4343

44-
- The name of the cookie is: `Application Gateway for ContainersAffinity`.
44+
- The name of the cookie is: `AGCAffinity`.
4545
- The duration (lifetime) of the cookie is 86,400 seconds (one day).
4646
- The `cookieName` and `cookieDuration` properties and values are discarded.
4747

articles/application-gateway/for-containers/troubleshooting-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greglin
66
ms.service: application-gateway
77
ms.subservice: appgw-for-containers
88
ms.topic: troubleshooting
9-
ms.date: 4/26/2024
9+
ms.date: 5/1/2024
1010
ms.author: greglin
1111
---
1212

@@ -26,10 +26,10 @@ Example output:
2626

2727
| NAME | READY | UP-TO-DATE | AVAILABLE | AGE | CONTAINERS | IMAGES | SELECTOR |
2828
| ------------------------ | ----- | ---------- | --------- | ---- | ----------------------- | ------------------------------------------------------------------------------- | -------- |
29-
| alb-controller | 2/2 | 2 | 2 | 18d | alb-controller | mcr.microsoft.com/application-lb/images/alb-controller:**1.0.1** | app=alb-controller |
30-
| alb-controller-bootstrap | 1/1 | 1 | 1 | 18d | alb-controller-bootstrap | mcr.microsoft.com/application-lb/images/alb-controller-bootstrap:**1.0.1** | app=alb-controller-bootstrap |
29+
| alb-controller | 2/2 | 2 | 2 | 18d | alb-controller | mcr.microsoft.com/application-lb/images/alb-controller:**1.0.2** | app=alb-controller |
30+
| alb-controller-bootstrap | 1/1 | 1 | 1 | 18d | alb-controller-bootstrap | mcr.microsoft.com/application-lb/images/alb-controller-bootstrap:**1.0.2** | app=alb-controller-bootstrap |
3131

32-
In this example, the ALB controller version is **1.0.1**.
32+
In this example, the ALB controller version is **1.0.2**.
3333

3434
The ALB Controller version can be upgraded by running the `helm upgrade alb-controller` command. For more information, see [Install the ALB Controller](quickstart-deploy-application-gateway-for-containers-alb-controller.md#install-the-alb-controller).
3535

0 commit comments

Comments
 (0)