Skip to content

Commit 7b75d00

Browse files
committed
pr-review fix
1 parent 5d539b0 commit 7b75d00

1 file changed

Lines changed: 36 additions & 26 deletions

File tree

learn-pr/wwl-azure/advanced-security-compute/includes/3-azure-kubernetes-service-overview.md

Lines changed: 36 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,32 +43,42 @@ The following list describes some of the common use cases for AKS, but by no mea
4343

4444
## Features of AKS
4545

46-
The following table lists some of the key features of AKS:
47-
48-
| **Feature** | **Description** |
49-
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
50-
| Identity and security management | Enforce [regulatory compliance controls using Azure Policy](/azure/aks/security-controls-policy) with built-in guardrails and internet security benchmarks |
51-
| | Integrate with [Kubernetes RBAC](/azure/aks/azure-ad-rbac) to limit access to cluster resources. |
52-
| | Use [Microsoft Entra ID](/azure/aks/enable-authentication-microsoft-entra-id) to set up Kubernetes access based on existing identity and group membership. |
53-
| | Use [workload identity](/azure/aks/workload-identity-overview) to enable pods to authenticate with Azure services using Microsoft Entra | ID. |
54-
| Logging and monitoring | Integrate with [Container Insights](/azure/azure-monitor/containers/kubernetes-monitoring-enable), a feature in Azure Monitor, to monitor the health and performance of your clusters and containerized applications. |
55-
| | Set up [Network Observability](/azure/aks/network-observability-overview) and [use BYO Prometheus and Grafana](/azure/aks/network-observability-byo-cli) to collect and visualize network traffic data from your clusters.|
56-
| Streamlined deployments | Use prebuilt cluster configurations for Kubernetes with [smart defaults](/azure/aks/quotas-skus-regions#cluster-configuration-presets-in-the-azure-portal) |
57-
| | Autoscale your applications using the [Kubernetes Event Driven Autoscaler (KEDA)](/azure/aks/keda-about). | Use [Draft for AKS](/azure/aks/draft) to ready source code and prepare your applications for production. |
58-
| Clusters and nodes | Connect storage to nodes and pods, upgrade cluster components, and use GPUs.|
59-
| | Create clusters that run multiple node pools to support mixed operating systems and Windows Server containers. |
60-
| | Configure automatic scaling using the [cluster autoscaler](/azure/aks/cluster-autoscaler) and [horizontal pod autoscaler](/azure/aks/tutorial-kubernetes-scale#autoscale-pods). |
61-
| | Deploy clusters with [confidential computing nodes](/azure/confidential-computing/confidential-nodes-aks-overview) to allow containers to run in a hardware-based trusted execution environment. |
62-
| | Use [AKS Automatic](/azure/aks/intro-aks-automatic) for production-ready clusters with managed node pools and automatic resource allocation. |
63-
| Storage volume support | Mount static or dynamic storage volumes for persistent data. |
64-
| | Use [Azure Disks](/azure/aks/azure-disk-csi) for single pod access and [Azure Files](/azure/aks/azure-files-csi) for multiple, concurrent pod access. |
65-
| | Use [Azure NetApp Files](/azure/aks/azure-netapp-files) for high-performance, high-throughput, and low-latency file shares. |
66-
| Networking | Use [Kubenet networking](/azure/aks/concepts-network#kubenet-basic-networking) for simple deployments and [Azure Container Networking Interface (CNI) networking](/azure/aks/concepts-network#azure-cni-advanced-networking) for advanced scenarios. |
67-
| | [Bring your own Container Network Interface (CNI)](/azure/aks/use-byo-cni) to use a external CNI plugin. |
68-
| | Easily access applications deployed to your clusters using the [application routing add-on with nginx](/azure/aks/app-routing). |
69-
| Development tooling integration | Develop on AKS with [Helm](/azure/aks/quickstart-helm). |
70-
| | Install the [Kubernetes extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools) to manage your workloads. |
71-
| | Apply the features of Istio with the [Istio-based service mesh add-on](/azure/aks/istio-about).|
46+
**Identity and security management**
47+
- Enforce [regulatory compliance controls using Azure Policy](/azure/aks/security-controls-policy) with built-in guardrails and internet security benchmarks
48+
- Integrate with [Kubernetes RBAC](/azure/aks/azure-ad-rbac) to limit access to cluster resources.
49+
- Use [Microsoft Entra ID](/azure/aks/enable-authentication-microsoft-entra-id) to set up Kubernetes access based on existing identity and group membership.
50+
- Use [workload identity](/azure/aks/workload-identity-overview) to enable pods to authenticate with Azure services using Microsoft Entra
51+
52+
**Logging and monitoring**
53+
- Integrate with [Container Insights](/azure/azure-monitor/containers/kubernetes-monitoring-enable), a feature in Azure Monitor, to monitor the health and performance of your clusters and containerized applications.
54+
- Set up [Network Observability](/azure/aks/network-observability-overview) and [use BYO Prometheus and Grafana](/azure/aks/network-observability-byo-cli) to collect and visualize network traffic data from your clusters.
55+
56+
**Streamlined deployments**
57+
- Use prebuilt cluster configurations for Kubernetes with [smart defaults](/azure/aks/quotas-skus-regions#cluster-configuration-presets-in-the-azure-portal).
58+
- Autoscale your applications using the [Kubernetes Event Driven Autoscaler (KEDA)](/azure/aks/keda-about).
59+
- Use [Draft for AKS](/azure/aks/draft) to ready source code and prepare your applications for production.
60+
61+
**Clusters and nodes**
62+
- Connect storage to nodes and pods, upgrade cluster components, and use GPUs.
63+
- Create clusters that run multiple node pools to support mixed operating systems and Windows Server containers.
64+
- Configure automatic scaling using the [cluster autoscaler](/azure/aks/cluster-autoscaler) and [horizontal pod autoscaler](/azure/aks/tutorial-kubernetes-scale#autoscale-pods).
65+
- Deploy clusters with [confidential computing nodes](/azure/confidential-computing/confidential-nodes-aks-overview) to allow containers to run in a hardware-based trusted execution environment.
66+
- Use [AKS Automatic](/azure/aks/intro-aks-automatic) for production-ready clusters with managed node pools and automatic resource allocation.
67+
68+
**Storage volume support**
69+
- Mount static or dynamic storage volumes for persistent data.
70+
- Use [Azure Disks](/azure/aks/azure-disk-csi) for single pod access and [Azure Files](/azure/aks/azure-files-csi) for multiple, concurrent pod access.
71+
- Use [Azure NetApp Files](/azure/aks/azure-netapp-files) for high-performance, high-throughput, and low-latency file shares.
72+
73+
**Networking**
74+
- Use [Kubenet networking](/azure/aks/concepts-network#kubenet-basic-networking) for simple deployments and [Azure Container Networking Interface (CNI) networking](/azure/aks/concepts-network#azure-cni-advanced-networking) for advanced scenarios.
75+
- [Bring your own Container Network Interface (CNI)](/azure/aks/use-byo-cni) to use a external CNI plugin.
76+
- Easily access applications deployed to your clusters using the [application routing add-on with nginx](/azure/aks/app-routing). |
77+
78+
**Development tooling integration**
79+
- Develop on AKS with [Helm](/azure/aks/quickstart-helm).
80+
- Install the [Kubernetes extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools) to manage your workloads.
81+
- Apply the features of Istio with the [Istio-based service mesh add-on](/azure/aks/istio-about).|
7282

7383
## Get started with AKS
7484

0 commit comments

Comments
 (0)