Skip to content

Commit d68896e

Browse files
authored
Merge pull request #266173 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 5ac3f8d + 6bdb4f0 commit d68896e

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

articles/ai-services/computer-vision/includes/read-editions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: pafarley
1717
>
1818
> | Input | Examples | Read edition | Benefit |
1919
> |----------|--------------|-------------------------|-------------------------|
20-
> | **Images**: General, in-the-wild images | labels, street signs, and posters | [OCR for images (version 4.0 preview)](../concept-ocr.md) | Optimized for general, non-document images with a performance-enhanced synchronous API that makes it easier to embed OCR in your user experience scenarios.
20+
> | **Images**: General, in-the-wild images | labels, street signs, and posters | [OCR for images (version 4.0)](../concept-ocr.md) | Optimized for general, non-document images with a performance-enhanced synchronous API that makes it easier to embed OCR in your user experience scenarios.
2121
> | **Documents**: Digital and scanned, including images | books, articles, and reports | [Document Intelligence read model](../../../ai-services/document-intelligence/concept-read.md) | Optimized for text-heavy scanned and digital documents with an asynchronous API to help automate intelligent document processing at scale.
2222
>
2323
> **About Azure AI Vision v3.2 GA Read**

articles/aks/azure-files-csi.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,10 @@ mountOptions:
346346

347347
### Create NFS file share storage class
348348

349-
Create a file named `nfs-sc.yaml` and copy the manifest below. For a list of supported `mountOptions`, see [NFS mount options][nfs-file-share-mount-options]
349+
Create a file named `nfs-sc.yaml` and copy the manifest below. For a list of supported `mountOptions`, see [NFS mount options][nfs-file-share-mount-options].
350+
351+
> [!NOTE]
352+
> `vers`, `minorversion`, `sec` are configured by the Azure File CSI driver. Specifying a value in your manifest for these properties aren't supported.
350353

351354
```yml
352355
apiVersion: storage.k8s.io/v1
@@ -510,4 +513,4 @@ The output of the commands resembles the following example:
510513
[statically-provision-a-volume]: azure-csi-files-storage-provision.md#statically-provision-a-volume
511514
[azure-private-endpoint-dns]: ../private-link/private-endpoint-dns.md#azure-services-dns-zone-configuration
512515
[azure-netapp-files-mount-options-best-practices]: ../azure-netapp-files/performance-linux-mount-options.md#rsize-and-wsize
513-
[nfs-file-share-mount-options]: ../storage/files/storage-files-how-to-mount-nfs-shares.md#mount-options
516+
[nfs-file-share-mount-options]: ../storage/files/storage-files-how-to-mount-nfs-shares.md#mount-options

articles/aks/configure-kubenet-dual-stack.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,10 +298,7 @@ Once the cluster has been created, you can deploy your workloads. This article w
298298
## Expose the workload via a `LoadBalancer` type service
299299
300300
> [!IMPORTANT]
301-
> There are currently **two limitations** pertaining to IPv6 services in AKS.
302-
>
303-
> 1. Azure Load Balancer sends health probes to IPv6 destinations from a link-local address. In Azure Linux node pools, this traffic can't be routed to a pod, so traffic flowing to IPv6 services deployed with `externalTrafficPolicy: Cluster` fail. IPv6 services must be deployed with `externalTrafficPolicy: Local`, which causes `kube-proxy` to respond to the probe on the node.
304-
> 2. Starting from AKS v1.27, you can directly create a dualstack service. However, for older versions, only the first IP address for a service will be provisioned to the load balancer, so a dual-stack service only receives a public IP for its first-listed IP family. To provide a dual-stack service for a single deployment, please create two services targeting the same selector, one for IPv4 and one for IPv6.
301+
> Starting in AKS v1.27, you can create a dual-stack LoadBalancer service which will be provisioned with 1 IPv4 public IP and 1 IPv6 public IP. However, in older versions, only the first IP address for a service will be provisioned to the load balancer, so a dual-stack service only receives a public IP for its first-listed IP family. To provide a dual-stack service for a single deployment, please create two services targeting the same selector, one for IPv4 and one for IPv6.
305302
306303
# [kubectl](#tab/kubectl)
307304

articles/azure-monitor/containers/kubernetes-monitoring-enable.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,8 @@ As of version 6.4.0-main-02-22-2023-3ee44b9e of the Managed Prometheus addon con
612612
* `memory`
613613
* `process`
614614
* `cpu_info`
615+
616+
For more collectors, please see [Prometheus exporter for Windows metrics](https://github.com/prometheus-community/windows_exporter#windows_exporter).
615617
616618
Deploy the [windows-exporter-daemonset YAML](https://github.com/prometheus-community/windows_exporter/blob/master/kubernetes/windows-exporter-daemonset.yaml) file:
617619

articles/azure-resource-manager/bicep/bicep-extensibility-kubernetes-provider.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ The Kubernetes provider allows you to create Kubernetes resources directly with
1313
> [!NOTE]
1414
> Kubernetes provider is not currently supported for private clusters:
1515
>
16-
> ```json
16+
> ```bicep
1717
> resource AKS 'Microsoft.ContainerService/managedClusters@2023-01-02-preview' = {
18+
> ...
1819
> properties: {
19-
> "apiServerAccessProfile": {
20-
> "enablePrivateCluster": "true"
21-
> }
20+
> apiServerAccessProfile: {
21+
> enablePrivateCluster: true
2222
> }
23+
> }
2324
> }
2425
>
2526
> ```

articles/container-apps/ingress-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ You can expose additional TCP ports from your application. To learn more, see th
158158
Adding additional TCP ports can be done through the CLI by referencing a YAML file with your TCP port configurations.
159159

160160
```azurecli
161-
az containerapp create
161+
az containerapp create \
162162
--name <app-name> \
163163
--resource-group <resource-group> \
164164
--yaml <your-yaml-file>

0 commit comments

Comments
 (0)