Skip to content

Commit 3f90349

Browse files
authored
Merge pull request #286919 from MicrosoftDocs/main
9/18 11:00 AM IST Publish
2 parents fda74f4 + 9a27ba4 commit 3f90349

File tree

40 files changed

+216
-299
lines changed

40 files changed

+216
-299
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "articles/vpn-gateway/vpn-gateway-about-forced-tunneling.md",
5+
"redirect_url": "/previous-versions/azure/vpn-gateway/vpn-gateway-about-forced-tunneling",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path": "articles/azure-app-configuration/rest-api-postman.md",
510
"redirect_url": "/previous-versions/azure/azure-app-configuration/rest-api-postman",

articles/app-service/environment/overview.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,6 @@ App Service Environment v3 is available in the following regions:
205205

206206
An App Service Environment will only store customer data including app content, settings and secrets within the region where it's deployed. All data is guaranteed to remain in the region. For more information, see [Data residency in Azure](https://azure.microsoft.com/explore/global-infrastructure/data-residency/#overview).
207207

208-
## App Service Environment v2
209-
210-
App Service Environment has three versions: App Service Environment v1, App Service Environment v2, and App Service Environment v3. The information in this article is based on App Service Environment v3. To learn more about App Service Environment v2, see [App Service Environment v2 introduction](./intro.md).
211-
212208
## Next steps
213209

214210
> [!div class="nextstepaction"]

articles/application-gateway/for-containers/how-to-frontend-mtls-gateway-api.md

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greglin
66
ms.service: azure-application-gateway
77
ms.subservice: appgw-for-containers
88
ms.topic: how-to
9-
ms.date: 9/16/2024
9+
ms.date: 9/17/2024
1010
ms.author: greglin
1111
---
1212

@@ -28,7 +28,7 @@ See the following figure:
2828

2929
The valid client certificate flow shows a client presenting a certificate to the frontend of Application Gateway for Containers. Application Gateway for Containers determines the certificate is valid and proxies the request to the backend target. The response is ultimately returned to the client.
3030

31-
The revoked client certificate flow shows a client presenting a revoked certificate to the frontend of Application Gateway for Containers. Application Gateway for Containers determines the certificate is not valid and prevents the request from being proxied to the client. The client will receive an HTTP 400 bad request and corresponding reason.
31+
The revoked client certificate flow shows a client presenting a revoked certificate to the frontend of Application Gateway for Containers. Application Gateway for Containers determines the certificate isn't valid and prevents the request from being proxied to the client. The client will receive an HTTP 400 bad request and corresponding reason.
3232

3333
## Prerequisites
3434

@@ -51,7 +51,7 @@ The revoked client certificate flow shows a client presenting a revoked certific
5151

5252
### Generate certificate(s)
5353

54-
For this example, we will create a root certificate and issue a client certificate from the root. If you already have a root certificate and client certificate, you may skip these steps.
54+
For this example, we'll create a root certificate and issue a client certificate from the root. If you already have a root certificate and client certificate, you may skip these steps.
5555

5656
#### Generate a private key for the root certificate
5757

@@ -103,7 +103,7 @@ spec:
103103
certificateRefs:
104104
- kind : Secret
105105
group: ""
106-
name: contoso.com
106+
name: listener-tls-secret
107107
EOF
108108
```
109109

@@ -147,7 +147,7 @@ EOF
147147
certificateRefs:
148148
- kind : Secret
149149
group: ""
150-
name: contoso.com
150+
name: listener-tls-secret
151151
addresses:
152152
- type: alb.networking.azure.io/alb-frontend
153153
value: $FRONTEND_NAME
@@ -223,8 +223,8 @@ spec:
223223
- name: gateway-01
224224
rules:
225225
- backendRefs:
226-
- name: mtls-app
227-
port: 443
226+
- name: echo
227+
port: 80
228228
EOF
229229
```
230230

@@ -266,6 +266,12 @@ status:
266266
namespace: test-infra
267267
```
268268

269+
Create a Kubernetes secret using kubectl that contains the certificate chain to the client certificate.
270+
271+
```bash
272+
kubectl create secret generic ca.bundle -n test-infra --from-file=ca.crt=root.crt
273+
```
274+
269275
Create a FrontendTLSPolicy
270276

271277
```bash
@@ -290,7 +296,6 @@ spec:
290296
group: ""
291297
kind: Secret
292298
namespace: test-infra
293-
subjectAltName: "contoso-client"
294299
EOF
295300
```
296301

@@ -321,10 +326,23 @@ Now we're ready to send some traffic to our sample application, via the FQDN ass
321326
fqdn=$(kubectl get gateway gateway-01 -n test-infra -o jsonpath='{.status.addresses[0].value}')
322327
```
323328
324-
Curling this FQDN should return responses from the backend as configured on the HTTPRoute.
329+
Curling the FQDN of your frontend without the client certificate.
330+
331+
```bash
332+
curl --insecure https://$fqdn/```
333+
334+
Note the response alerts a certificate is required.
335+
336+
```
337+
curl: (56) OpenSSL SSL_read: OpenSSL/1.1.1k: error:1409445C:SSL routines:ssl3_read_bytes:tlsv13 alert certificate required, errno 0
338+
```
339+
340+
Curl the FQDN presenting the client certificate generated.
325341
326342
```bash
327343
curl --cert client.crt --key client.key --insecure https://$fqdn/
328344
```
329345
330-
Congratulations, you have installed ALB Controller, deployed a backend application, authenticated via client certificate, and routed traffic to the application via the gateway on Application Gateway for Containers.
346+
Note the response is from the backend service behind Application Gateway for Containers.
347+
348+
Congratulations, you installed ALB Controller, deployed a backend application, authenticated via client certificate, and returned traffic from your backend service via Application Gateway for Containers.

articles/azure-functions/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@
595595
href: disable-function.md
596596
- name: Networking
597597
href: configure-networking-how-to.md
598-
- name: Move across regions
599-
href: functions-move-across-regions.md
598+
- name: Relocate to another region
599+
href: ../operational-excellence/relocation-functions.md?toc=/azure/azure-functions/toc.json
600600
- name: Work with legacy Functions Proxies
601601
href: legacy-proxies.md
602602
- name: Migrate

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,10 +860,12 @@ Azure Functions currently can be used with the following "Preview" or "Go-live"
860860

861861
| Operating system | .NET preview version |
862862
| - | - |
863-
| Linux | .NET 9 Preview 7<sup>1</sup> |
863+
| Linux | .NET 9 Preview 7<sup>1, 2</sup> |
864864

865865
<sup>1</sup> To successfully target .NET 9, your project needs to reference the [2.x versions of the core packages](#version-2x-preview). If using Visual Studio, .NET 9 requires version 17.12 or later.
866866

867+
<sup>2</sup> .NET 9 is not yet supported on the Flex Consumption SKU.
868+
867869
See [Supported versions][supported-versions] for a list of generally available releases that you can use.
868870

869871
### Using a preview .NET SDK

articles/azure-functions/functions-move-across-regions.md

Lines changed: 0 additions & 79 deletions
This file was deleted.

articles/azure-netapp-files/.openpublishing.redirection.azure-netapp-files.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
},
3333
{
3434
"source_path_from_root": "/articles/azure-netapp-files/reserved-capacity.md",
35-
"redirect_url": "/azure/azure-netapp-files/whats-new",
35+
"redirect_url": "/azure/azure-netapp-files/reservations",
3636
"redirect_document_id": false
37-
}
37+
},
3838
]
3939
}

articles/azure-netapp-files/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@
8787
href: azure-netapp-files-cost-model.md
8888
- name: Azure NetApp Files storage with cool access
8989
href: cool-access-introduction.md
90+
- name: Azure NetApp Files reserved capacity
91+
href: reservations.md
9092
- name: Quotas
9193
items:
9294
- name: Understand volume quota
406 KB
Loading
410 KB
Loading

0 commit comments

Comments
 (0)