You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/app-routing.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure Kubernetes Service (AKS) managed nginx Ingress with the application routing add-on
2
+
title: Azure Kubernetes Service (AKS) managed NGINX ingress with the application routing add-on
3
3
description: Use the application routing add-on to securely access applications deployed on Azure Kubernetes Service (AKS).
4
4
ms.subservice: aks-networking
5
5
ms.custom: devx-track-azurecli
@@ -9,17 +9,17 @@ ms.date: 11/21/2023
9
9
ms.author: allensu
10
10
---
11
11
12
-
# Managed nginx Ingress with the application routing add-on
12
+
# Managed NGINX ingress with the application routing add-on
13
13
14
-
One way to route Hypertext Transfer Protocol (HTTP) and secure (HTTPS) traffic to applications running on an Azure Kubernetes Service (AKS) cluster is to use the [Kubernetes Ingress object][kubernetes-ingress-object-overview]. When you create an Ingress object that uses the application routing add-on nginx Ingress classes, the add-on creates, configures, and manages one or more Ingress controllers in your AKS cluster.
14
+
One way to route Hypertext Transfer Protocol (HTTP) and secure (HTTPS) traffic to applications running on an Azure Kubernetes Service (AKS) cluster is to use the [Kubernetes Ingress object][kubernetes-ingress-object-overview]. When you create an Ingress object that uses the application routing add-on NGINX Ingress classes, the add-on creates, configures, and manages one or more Ingress controllers in your AKS cluster.
15
15
16
16
This article shows you how to deploy and configure a basic Ingress controller in your AKS cluster.
17
17
18
-
## Application routing add-on with nginx features
18
+
## Application routing add-on with NGINX features
19
19
20
-
The application routing add-on with nginx delivers the following:
20
+
The application routing add-on with NGINX delivers the following:
21
21
22
-
* Easy configuration of managed nginx Ingress controllers based on [Kubernetes nginx Ingress controller][kubernetes-nginx-ingress].
22
+
* Easy configuration of managed NGINX Ingress controllers based on [Kubernetes NGINX Ingress controller][kubernetes-nginx-ingress].
23
23
* Integration with [Azure DNS][azure-dns-overview] for public and private zone management
24
24
* SSL termination with certificates stored in Azure Key Vault.
25
25
@@ -38,7 +38,7 @@ With the retirement of [Open Service Mesh][open-service-mesh-docs] (OSM) by the
38
38
- The application routing add-on supports up to five Azure DNS zones.
39
39
- All global Azure DNS zones integrated with the add-on have to be in the same resource group.
40
40
- All private Azure DNS zones integrated with the add-on have to be in the same resource group.
41
-
- Editing any resources in the `app-routing-system` namespace, including the Ingress-nginx ConfigMap isn't supported.
41
+
- Editing any resources in the `app-routing-system` namespace, including the Ingress-nginx ConfigMap, isn't supported.
42
42
43
43
## Enable application routing using Azure CLI
44
44
@@ -67,7 +67,7 @@ az aks approuting enable -g <ResourceGroupName> -n <ClusterName>
67
67
68
68
The following add-ons are required to support this configuration:
69
69
70
-
***open-service-mesh**: If you require encrypted intra cluster traffic (recommended) between the nginx Ingress and your services, the Open Service Mesh add-on is required which provides mutual TLS (mTLS).
70
+
***open-service-mesh**: If you require encrypted intra cluster traffic (recommended) between the NGINX Ingress and your services, the Open Service Mesh add-on is required which provides mutual TLS (mTLS).
71
71
72
72
### Enable on a new cluster
73
73
@@ -178,7 +178,7 @@ The application routing add-on uses annotations on Kubernetes Ingress objects to
178
178
app: aks-helloworld
179
179
```
180
180
181
-
### Create the Ingress
181
+
### Create the Ingress object
182
182
183
183
The application routing add-on creates an Ingress class on the cluster named *webapprouting.kubernetes.azure.com*. When you create an Ingress object with this class, it activates the add-on.
184
184
@@ -295,7 +295,7 @@ The application routing add-on creates an Ingress class on the cluster named *we
295
295
app: aks-helloworld
296
296
```
297
297
298
-
### Create the Ingress
298
+
### Create the Ingress object
299
299
300
300
The application routing add-on creates an Ingress class on the cluster called *webapprouting.kubernetes.azure.com*. When you create an Ingress object with this class, it activates the add-on. The `kubernetes.azure.com/use-osm-mtls: "true"` annotation on the Ingress object creates an Open Service Mesh (OSM) [IngressBackend][ingress-backend] to configure a backend service to accept Ingress traffic from trusted sources.
Copy file name to clipboardExpand all lines: articles/aks/operator-best-practices-identity.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
-
title: Best practices for managing identity
2
+
title: Best practices for managing authentication and authorization
3
3
titleSuffix: Azure Kubernetes Service
4
4
description: Learn the cluster operator best practices for how to manage authentication and authorization for clusters in Azure Kubernetes Service (AKS)
5
5
ms.topic: conceptual
6
-
ms.date: 04/14/2023
6
+
ms.date: 02/16/2024
7
7
---
8
8
9
9
# Best practices for authentication and authorization in Azure Kubernetes Service (AKS)
@@ -206,8 +206,7 @@ For more information about cluster operations in AKS, see the following best pra
0 commit comments