Skip to content

Commit e4cbd6c

Browse files
authored
Merge pull request #184597 from MicrosoftDocs/master
1/10 AM Publish
2 parents 8c304c3 + 3175753 commit e4cbd6c

File tree

42 files changed

+180
-159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+180
-159
lines changed

articles/active-directory/app-proxy/application-proxy-faq.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ sections:
118118
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp\EnableDefaultHttp2 (DWORD) Value: 0
119119
```
120120
121+
- question: |
122+
Why is the connector still showing in Azure AD portal after I uninstalled the connector from the Server?
123+
answer: |
124+
When a connector is running, it remains active as it connects to the service. Uninstalled /Unused connectors are tagged as inactive and are removed after 10 days of inactivity from the portal.
125+
There is no way to remove the Inactive connector manually from the Azure portal.
126+
121127
- name: Application configuration
122128
questions:
123129
- question: |

articles/aks/azure-disk-customer-managed-keys.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use a customer-managed key to encrypt Azure disks in Azure Kubernetes Ser
33
description: Bring your own keys (BYOK) to encrypt AKS OS and Data disks.
44
services: container-service
55
ms.topic: article
6-
ms.date: 09/01/2020
6+
ms.date: 1/9/2022
77

88
---
99

@@ -121,10 +121,10 @@ Create a file called **byok-azure-disk.yaml** that contains the following inform
121121
kind: StorageClass
122122
apiVersion: storage.k8s.io/v1
123123
metadata:
124-
name: hdd
125-
provisioner: kubernetes.io/azure-disk
124+
name: byok
125+
provisioner: disk.csi.azure.com # replace with "kubernetes.io/azure-disk" if aks version is less than 1.21
126126
parameters:
127-
skuname: Standard_LRS
127+
skuname: StandardSSD_LRS
128128
kind: managed
129129
diskEncryptionSetID: "/subscriptions/{myAzureSubscriptionId}/resourceGroups/{myResourceGroup}/providers/Microsoft.Compute/diskEncryptionSets/{myDiskEncryptionSetName}"
130130
```

articles/aks/azure-files-dynamic-pv.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A storage class is used to define how an Azure file share is created. A storage
3434
* *Premium_ZRS* - premium zone redundant storage (ZRS)
3535

3636
> [!NOTE]
37-
> Azure Files support premium storage in AKS clusters that run Kubernetes 1.13 or higher, minimum premium file share is 100GB
37+
> minimum premium file share is 100GB
3838
3939
For more information on Kubernetes storage classes for Azure Files, see [Kubernetes Storage Classes][kubernetes-storage-classes].
4040

@@ -45,7 +45,7 @@ kind: StorageClass
4545
apiVersion: storage.k8s.io/v1
4646
metadata:
4747
name: my-azurefile
48-
provisioner: kubernetes.io/azure-file
48+
provisioner: file.csi.azure.com # replace with "kubernetes.io/azure-file" if aks version is less than 1.21
4949
mountOptions:
5050
- dir_mode=0777
5151
- file_mode=0777
@@ -171,7 +171,7 @@ kind: StorageClass
171171
apiVersion: storage.k8s.io/v1
172172
metadata:
173173
name: my-azurefile
174-
provisioner: kubernetes.io/azure-file
174+
provisioner: file.csi.azure.com # replace with "kubernetes.io/azure-file" if aks version is less than 1.21
175175
mountOptions:
176176
- dir_mode=0777
177177
- file_mode=0777

articles/aks/certificate-rotation.md

Lines changed: 2 additions & 2 deletions
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: 11/03/2021
6+
ms.date: 1/9/2022
77
---
88

99
# Rotate certificates in Azure Kubernetes Service (AKS)
@@ -28,7 +28,7 @@ AKS generates and uses the following certificates, Certificate Authorities, and
2828
* The `kubectl` client has a certificate for communicating with the AKS cluster.
2929

3030
> [!NOTE]
31-
> AKS clusters created prior to May 2019 have certificates that expire after two years. Any cluster created after May 2019 or any cluster that has its certificates rotated have Cluster CA certificates that expire after 30 years. All other AKS certificates, which use the Cluster CA to for signing, will expire after two years and are automatically rotated during AKS version upgrade. To verify when your cluster was created, use `kubectl get nodes` to see the *Age* of your node pools.
31+
> AKS clusters created prior to May 2019 have certificates that expire after two years. Any cluster created after May 2019 or any cluster that has its certificates rotated have Cluster CA certificates that expire after 30 years. All other AKS certificates, which use the Cluster CA to for signing, will expire after two years and are automatically rotated during AKS version upgrade happened after 8/1/2021. To verify when your cluster was created, use `kubectl get nodes` to see the *Age* of your node pools.
3232
>
3333
> Additionally, you can check the expiration date of your cluster's certificate. For example, the following bash command displays the client certificate details for the *myAKSCluster* cluster in resource group *rg*
3434
> ```console

articles/aks/intro-kubernetes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can create an AKS cluster using:
1616
* [The Azure CLI](kubernetes-walkthrough.md)
1717
* [The Azure portal](kubernetes-walkthrough-portal.md)
1818
* [Azure PowerShell](kubernetes-walkthrough-powershell.md)
19-
* Using template-driven deployment options, like [Azure Resource Manager templates](kubernetes-walkthrough-rm-template.md) and Terraform
19+
* Using template-driven deployment options, like [Azure Resource Manager templates](kubernetes-walkthrough-rm-template.md), [Bicep](../azure-resource-manager/bicep/overview.md) and Terraform
2020

2121
When you deploy an AKS cluster, the Kubernetes master and all nodes are deployed and configured for you. Advanced networking, Azure Active Directory (Azure AD) integration, monitoring, and other features can be configured during the deployment process.
2222

@@ -174,4 +174,4 @@ Learn more about deploying and managing AKS with the Azure CLI Quickstart.
174174
[kubernetes-rbac]: concepts-identity.md#kubernetes-rbac
175175
[concepts-identity]: concepts-identity.md
176176
[concepts-storage]: concepts-storage.md
177-
[conf-com-node]: ../confidential-computing/confidential-nodes-aks-overview.md
177+
[conf-com-node]: ../confidential-computing/confidential-nodes-aks-overview.md

articles/aks/use-ultra-disks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Enable Ultra Disk support on Azure Kubernetes Service (AKS)
33
description: Learn how to enable and configure Ultra Disks in an Azure Kubernetes Service (AKS) cluster
44
services: container-service
55
ms.topic: article
6-
ms.date: 10/12/2021
6+
ms.date: 1/9/2022
77

88
---
99

@@ -67,12 +67,12 @@ kind: StorageClass
6767
apiVersion: storage.k8s.io/v1
6868
metadata:
6969
name: ultra-disk-sc
70-
provisioner: kubernetes.io/azure-disk
70+
provisioner: disk.csi.azure.com # replace with "kubernetes.io/azure-disk" if aks version is less than 1.21
7171
volumeBindingMode: WaitForFirstConsumer # optional, but recommended if you want to wait until the pod that will use this disk is created
7272
parameters:
7373
skuname: UltraSSD_LRS
7474
kind: managed
75-
cachingmode: None
75+
cachingMode: None
7676
diskIopsReadWrite: "2000" # minimum value: 2 IOPS/GiB
7777
diskMbpsReadWrite: "320" # minimum value: 0.032/GiB
7878
```

articles/azure-netapp-files/configure-kerberos-encryption.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: azure-netapp-files
1212
ms.workload: storage
1313
ms.tgt_pltfrm: na
1414
ms.topic: how-to
15-
ms.date: 01/07/2022
15+
ms.date: 01/10/2022
1616
ms.author: anfdocs
1717
---
1818
# Configure NFSv4.1 Kerberos encryption for Azure NetApp Files
@@ -27,6 +27,7 @@ The following requirements apply to NFSv4.1 client encryption:
2727
* DNS A/PTR record creation for both the client and Azure NetApp Files NFS server IP addresses
2828
* A Linux client: This article provides guidance for RHEL and Ubuntu clients. Other clients will work with similar configuration steps.
2929
* NTP server access: You can use one of the commonly used Active Directory Domain Controller (AD DC) domain controllers.
30+
* To leverage Domain or LDAP user authentication, ensure that NFSv4.1 volumes are enabled for LDAP. See [Configure ADDS LDAP with extended groups](configure-ldap-extended-groups.md).
3031
* Ensure that User Principal Names for user accounts do *not* end with a `$` symbol (for example, user$@REALM.COM). <!-- Not using 'contoso.com' in this example; per Mark, A customers REALM namespace may be different from their AD domain name space. -->
3132
For [Group managed service accounts](/windows-server/security/group-managed-service-accounts/getting-started-with-group-managed-service-accounts) (gMSA), you need to remove the trailing `$` from the User Principal Name before the account can be used with the Azure NetApp Files Kerberos feature.
3233

articles/cognitive-services/Speech-Service/how-to-migrate-to-custom-neural-voice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.author: v-baolianzou
1515
# Migrate from custom voice to custom neural voice
1616

1717
> [!IMPORTANT]
18-
> We are retiring the standard/non-neural training tier of custom voice on February 29, 2024. During the retiring period (3/1/2021 - 2/29/2024), existing standard tier users can continue to use their non-neural models created, but all new users who sign up for speech resources from **3/1/2021** should move to the neural tier/custom neural voice. After 2/29/2024, all standard/non-neural custom voices will no longer be supported.
18+
> We are retiring the standard non-neural training tier of custom voice from March 1, 2021 through February 29, 2024. If you used a non-neural custom voice with your Speech resource prior to March 1, 2021 then you can continue to do so until February 29, 2024. All other Speech resources can only use custom neural voice. After February 29, 2024, the non-neural custom voices won't be supported with any Speech resource.
1919
2020
The custom neural voice lets you build higher-quality voice models while requiring less data. You can develop more realistic, natural, and conversational voices. Your customers and end users will benefit from the latest Text-to-Speech technology, in a responsible way.
2121

articles/cognitive-services/Speech-Service/how-to-migrate-to-prebuilt-neural-voice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.author: v-baolianzou
1515
# Migrate from prebuilt standard voice to prebuilt neural voice
1616

1717
> [!IMPORTANT]
18-
> We are retiring the standard voices on August 31, 2024. During the retiring period (9/1/2021 - 8/31/2024), existing standard voice users can continue to use standard voices, but all new users who sign up for speech resources from **9/1/2021** should choose [neural voice names](language-support.md#prebuilt-neural-voices) in your speech synthesis request. After 8/31/2024, the standard voices will no longer be supported in your speech synthesis request.
18+
> We are retiring the standard voices from September 1, 2021 through August 31, 2024. If you used a standard voice with your Speech resource prior to September 1, 2021 then you can continue to do so until August 31, 2024. All other Speech resources can only use prebuilt neural voices. You can choose from the supported [neural voice names](language-support.md#prebuilt-neural-voices). After August 31, the standard voices won't be supported with any Speech resource.
1919
2020
The prebuilt neural voice provides more natural sounding speech output, and thus, a better end-user experience.
2121

articles/cognitive-services/Speech-Service/migration-overview-neural-voice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We're retiring two features from [Text-to-Speech](index-text-to-speech.yml) capa
1919
## Custom voice (non-neural training)
2020

2121
> [!IMPORTANT]
22-
> We are retiring the standard/non-neural training tier of custom voice on February 29, 2024. During the retiring period (3/1/2021 - 2/29/2024), existing standard tier users can continue to use their non-neural models created, but all new users who sign up for speech resources from **3/1/2021** should move to the neural tier/custom neural voice. After 2/29/2024, all standard/non-neural custom voices will no longer be supported.
22+
> We are retiring the standard non-neural training tier of custom voice from March 1, 2021 through February 29, 2024. If you used a non-neural custom voice with your Speech resource prior to March 1, 2021 then you can continue to do so until February 29, 2024. All other Speech resources can only use custom neural voice. After February 29, 2024, the non-neural custom voices won't be supported with any Speech resource.
2323
2424
Go to [this article](how-to-migrate-to-custom-neural-voice.md) to learn how to migrate to custom neural voice.
2525

@@ -32,7 +32,7 @@ Go to the [pricing page](https://azure.microsoft.com/pricing/details/cognitive-s
3232
## Prebuilt standard voice
3333

3434
> [!IMPORTANT]
35-
> We are retiring the standard voices on August 31, 2024. During the retiring period (9/1/2021 - 8/31/2024), existing standard voice users can continue to use standard voices, but all new users who sign up for speech resources from **9/1/2021** should choose [neural voice names](language-support.md#prebuilt-neural-voices) in your speech synthesis request. After 8/31/2024, the standard voices will no longer be supported in your speech synthesis request.
35+
> We are retiring the standard voices from September 1, 2021 through August 31, 2024. If you used a standard voice with your Speech resource prior to September 1, 2021 then you can continue to do so until August 31, 2024. All other Speech resources can only use prebuilt neural voices. You can choose from the supported [neural voice names](language-support.md#prebuilt-neural-voices). After August 31, the standard voices won't be supported with any Speech resource.
3636
3737
Go to [this article](how-to-migrate-to-prebuilt-neural-voice.md) to learn how to migrate to prebuilt neural voice.
3838

0 commit comments

Comments
 (0)