Skip to content

Commit f6eb14f

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into extend-ilo-timeout
2 parents 13d07c8 + 9c2571c commit f6eb14f

File tree

54 files changed

+864
-254
lines changed

Some content is hidden

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

54 files changed

+864
-254
lines changed

articles/active-directory/develop/permissions-consent-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ There are other ways in which applications can be granted authorization for app-
5252

5353
### Comparison of delegated and application permissions
5454

55-
| <!-- No header--> | Delegated permissions | Application permissions |
55+
| | Delegated permissions | Application permissions |
5656
|--|--|--|
5757
| Types of apps | Web / Mobile / single-page app (SPA) | Web / Daemon |
5858
| Access context | Get access on behalf of a user | Get access without a user |

articles/active-directory/develop/whats-new-docs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: active-directory
55
author: henrymbuguakiarie
66
manager: CelesteDG
77

8-
ms.date: 01/05/2023
8+
ms.date: 01/11/2023
99
ms.service: active-directory
1010
ms.subservice: develop
1111
ms.topic: reference
@@ -27,14 +27,14 @@ Welcome to what's new in the Microsoft identity platform documentation. This art
2727

2828
### Updated articles
2929

30-
- [Quickstart: Protect an ASP.NET Core web API with the Microsoft identity platform](quickstart-v2-aspnet-core-web-api.md)
30+
- [A web API that calls web APIs: Code configuration](scenario-web-api-call-api-app-configuration.md)
3131
- [Quickstart: Get a token and call the Microsoft Graph API by using a console app's identity](quickstart-v2-netcore-daemon.md)
32+
- [Quickstart: Protect an ASP.NET Core web API with the Microsoft identity platform](quickstart-v2-aspnet-core-web-api.md)
33+
- [Tutorial: Create a Blazor Server app that uses the Microsoft identity platform for authentication](tutorial-blazor-server.md)
3234
- [Tutorial: Sign in users and call a protected API from a Blazor WebAssembly app](tutorial-blazor-webassembly.md)
33-
- [A web API that calls web APIs: Code configuration](scenario-web-api-call-api-app-configuration.md)
34-
- [Web app that signs in users: Code configuration](scenario-web-app-sign-user-app-configuration.md)
3535
- [Web app that signs in users: App registration](scenario-web-app-sign-user-app-registration.md)
36-
- [Microsoft identity platform docs: What's new](whats-new-docs.md)
37-
- [Tutorial: Create a Blazor Server app that uses the Microsoft identity platform for authentication](tutorial-blazor-server.md)
36+
- [Web app that signs in users: Code configuration](scenario-web-app-sign-user-app-configuration.md)
37+
3838
## November 2022
3939

4040
### New articles

articles/aks/load-balancer-standard.md

Lines changed: 76 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ titleSuffix: Azure Kubernetes Service
44
description: Learn how to use a public load balancer with a Standard SKU to expose your services with Azure Kubernetes Service (AKS).
55
services: container-service
66
ms.topic: article
7+
ms.author: pahealy
8+
author: phealy
79
ms.date: 12/19/2022
8-
ms.author: jpalma
9-
author: palma21
1010

1111
#Customer intent: As a cluster operator or developer, I want to learn how to create a service in AKS that uses an Azure Load Balancer with a Standard SKU.
1212
---
@@ -114,6 +114,80 @@ You can customize different settings for your standard public load balancer at c
114114
> [!IMPORTANT]
115115
> Only one outbound IP option (managed IPs, bring your own IP, or IP prefix) can be used at a given time.
116116

117+
### Change the inbound pool type (PREVIEW)
118+
119+
AKS nodes can be referenced in the load balancer backend pools by either their IP configuration (VMSS based membership) or by their IP address only. Utilizing the IP address based backend pool membership provides higher efficiencies when updating services and provisioning load balancers, especially at high node counts. Provisioning new clusters with IP based backend pools and converting existing clusters is now supported. When combined with NAT Gateway or user-defined routing egress types, provisioning of new nodes and services will be more performant.
120+
121+
Two different pool membership types are available:
122+
123+
- `nodeIPConfiguration` - legacy VMSS IP configuration based pool membership type
124+
- `nodeIP` - IP-based membership type
125+
126+
#### Requirements
127+
128+
* The `aks-preview` extension must be at least version 0.5.103.
129+
* The AKS cluster must be version 1.23 or newer.
130+
* The AKS cluster must be using standard load balancers and virtual machine scale sets.
131+
132+
#### Limitations
133+
134+
* Clusters using IP based backend pools are limited to 2500 nodes.
135+
136+
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
137+
138+
#### Install the aks-preview CLI extension
139+
140+
```azurecli-interactive
141+
# Install the aks-preview extension
142+
az extension add --name aks-preview
143+
144+
# Update the extension to make sure you have the latest version installed
145+
az extension update --name aks-preview
146+
```
147+
148+
#### Register the `IPBasedLoadBalancerPreview` preview feature
149+
150+
To create an AKS cluster with IP based backend pools, you must enable the `IPBasedLoadBalancerPreview` feature flag on your subscription.
151+
152+
Register the `IPBasedLoadBalancerPreview` feature flag by using the `az feature register` command, as shown in the following example:
153+
154+
```azurecli-interactive
155+
az feature register --namespace "Microsoft.ContainerService" --name "IPBasedLoadBalancerPreview"
156+
```
157+
158+
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the `az feature list` command:
159+
160+
```azurecli-interactive
161+
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/IPBasedLoadBalancerPreview')].{Name:name,State:properties.state}"
162+
```
163+
164+
When the feature has been registered, refresh the registration of the *Microsoft.ContainerService* resource provider by using the `az provider register` command:
165+
166+
```azurecli-interactive
167+
az provider register --namespace Microsoft.ContainerService
168+
```
169+
170+
#### Create a new AKS cluster with IP-based inbound pool membership
171+
172+
```azurecli-interactive
173+
az aks create \
174+
--resource-group myResourceGroup \
175+
--name myAKSCluster \
176+
--load-balancer-backend-pool-type=nodeIP
177+
```
178+
179+
#### Update an existing AKS cluster to use IP-based inbound pool membership
180+
181+
> [!WARNING]
182+
> This operation will cause a temporary disruption to incoming service traffic in the cluster. The impact time will increase with larger clusters that have many nodes.
183+
184+
```azurecli-interactive
185+
az aks update \
186+
--resource-group myResourceGroup \
187+
--name myAKSCluster \
188+
--load-balancer-backend-pool-type=nodeIP
189+
```
190+
117191
### Scale the number of managed outbound public IPs
118192

119193
Azure Load Balancer provides outbound and inbound connectivity from a virtual network. Outbound rules make it simple to configure network address translation for the public standard load balancer.

articles/azure-arc/data/validation-program.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ To see how all Azure Arc-enabled components are validated, see [Validation progr
4545
|Solution and version | Kubernetes version | Azure Arc-enabled data services version | SQL engine version | PostgreSQL server version
4646
|-----|-----|-----|-----|-----|
4747
|HPE Superdome Flex 280|1.20.0|1.8.0_2022-06-14|16.0.41.7339|12.3 (Ubuntu 12.3-1)
48-
|HPE Apollo 4200 Gen10 Plus (directly connected mode) |1.7.18 <sup>*</sup>|1.11.0_2022-09-13 |16.0.312.4243|12.3 (Ubuntu 12.3-1)|
49-
|HPE Apollo 4200 Gen10 Plus (indirectly connected mode) |1.22.6 <sup>*</sup>|v1.10.0_2022-08-09 |16.0.312.4243|12.3 (Ubuntu 12.3-1)|
50-
51-
<sup>*</sup>Azure Kubernetes Service (AKS) on Azure Stack HCI
48+
|HPE Apollo 4200 Gen10 Plus | 1.22.6 | v1.11.0_2022-09-13 |16.0.312.4243|12.3 (Ubuntu 12.3-1)|
5249

5350
### Kublr
5451

articles/cognitive-services/openai/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ The number of examples typically range from 0 to 100 depending on how many can f
124124

125125
### Models
126126

127-
The service provides users access to several different models. Each model provides a different capability and price point. The GPT-3 base models are known as Davinci, Curie, Babbage, and Ada in decreasing order of capability and speed.
127+
The service provides users access to several different models. Each model provides a different capability and price point. The GPT-3 base models are known as Davinci, Curie, Babbage, and Ada in decreasing order of capability and increasing order of speed.
128128

129129
The Codex series of models is a descendant of GPT-3 and has been trained on both natural language and code to power natural language to code use cases. Learn more about each model on our [models concept page](./concepts/models.md).
130130

131131
## Next steps
132132

133-
Learn more about the [underlying models that power Azure OpenAI](./concepts/models.md).
133+
Learn more about the [underlying models that power Azure OpenAI](./concepts/models.md).

articles/communication-services/concepts/identifiers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ There are user identities that you create yourself and there are external identi
6161
* For an introduction to communication identities, see [Identity model](./identity-model.md).
6262
* To learn how to quickly create identities for testing, see the [quick-create identity quickstart](../quickstarts/identity/quick-create-identity.md).
6363
* To learn how to use Communication Services together with Microsoft Teams, see [Teams interoperability](./teams-interop.md).
64+
* To learn how to use a Raw ID, see [Use cases for string identifiers in Communication SDKs](./raw-id-use-cases.md).

0 commit comments

Comments
 (0)