Skip to content

Commit d318abc

Browse files
authored
Merge pull request #178506 from miwithro/patch-88
Update certificate-rotation.md
2 parents edc447f + be9ea1b commit d318abc

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

articles/aks/certificate-rotation.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Rotate certificates in Azure Kubernetes Service (AKS)
33
description: Learn how to rotate your certificates in an Azure Kubernetes Service (AKS) cluster.
44
services: container-service
55
ms.topic: article
6-
ms.date: 7/13/2021
6+
ms.date: 11/03/2021
77
---
88

99
# Rotate certificates in Azure Kubernetes Service (AKS)
@@ -50,6 +50,28 @@ az vm run-command invoke -g MC_rg_myAKSCluster_region -n vm-name --command-id Ru
5050
az vmss run-command invoke -g MC_rg_myAKSCluster_region -n vmss-name --instance-id 0 --command-id RunShellScript --query 'value[0].message' -otsv --scripts "openssl x509 -in /etc/kubernetes/certs/apiserver.crt -noout -enddate"
5151
```
5252

53+
## Certificate Auto Rotation
54+
55+
Azure Kubernetes Service will automatically rotate non-ca certificates on both the control plane and agent nodes before they expire with no downtime for the cluster.
56+
57+
For AKS to automatically rotate non-CA certificates, the cluster must have [TLS Bootstrapping](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet-tls-bootstrapping/). TLS Bootstrapping is currently available in the following regions:
58+
59+
* eastus2euap
60+
* centraluseuap
61+
* westcentralus
62+
* uksouth
63+
* eastus
64+
* australiacentral
65+
* australiaest
66+
67+
> [!IMPORTANT]
68+
>Once a region is configured either create a new cluster or upgrade 'az aks upgrade -g $RESOURCE_GROUP_NAME -n $CLUSTER_NAME' an existing cluster to set that cluster for auto-cert rotation.
69+
70+
### Limititation
71+
72+
Auto cert rotation won't be enabled on non-rbac cluster.
73+
74+
5375
## Rotate your cluster certificates
5476

5577
> [!WARNING]

0 commit comments

Comments
 (0)