You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Standard replication](#standard-replication-for-high-availability)| Dual-node replicated configuration in a single data center with automatic failover | 99.9% (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |Yes|Yes|Yes|
23
-
|[Zone redundancy](#zone-redundancy)| Multi-node replicated configuration across Availability Zones, with automatic failover | 99.9% in Premium; 99.99% in Enterprise (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |No|Yes|Yes|
23
+
|[Zone redundancy](#zone-redundancy)| Multi-node replicated configuration across Availability Zones, with automatic failover | 99.9% in Premium; 99.99% in Enterprise (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |Yes (Preview)|Yes|Yes|
24
24
| Geo-replication | Linked cache instances in two regions, with user-controlled failover | Premium; Enterprise (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |No|[Passive](#passive-geo-replication)|[Active](#active-geo-replication)|
25
25
|[Import/Export](#importexport)| Point-in-time snapshot of data in cache. | 99.9% (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |No|Yes|Yes|
26
26
|[Persistence](#persistence)| Periodic data saving to storage account. | 99.9% (see [details](https://azure.microsoft.com/support/legal/sla/cache/v1_1/)) |No|Yes|Preview|
Copy file name to clipboardExpand all lines: articles/azure-monitor/logs/search-jobs.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,9 @@ This video explains when and how to use search jobs:
24
24
|:-------|:---------------------|
25
25
| Run a search job |`Microsoft.OperationalInsights/workspaces/tables/write` and `Microsoft.OperationalInsights/workspaces/searchJobs/write` permissions to the Log Analytics workspace, for example, as provided by the [Log Analytics Contributor built-in role](../logs/manage-access.md#built-in-roles). |
26
26
27
+
> [!NOTE]
28
+
> Cross-tenant search jobs are not currently supported, even when Entra ID tenants are managed through Azure Lighthouse.
29
+
27
30
## When to use search jobs
28
31
29
32
Use a search job when the log query timeout of 10 minutes isn't sufficient to search through large volumes of data or if you're running a slow query.
* For operations that require maps or schemas, you can either:
642
642
643
-
* Upload these artifacts to your logic app resource using the Azure portal or Visual Studio Code. You can then use these artifacts across all child workflows in the *same* logic app resource. For more information, review [Add schemas to use with workflows in Azure Logic Apps](../logic-apps/logic-apps-enterprise-integration-maps.md?tabs=standard) and [Add schemas to use with workflows in Azure Logic Apps](../logic-apps/logic-apps-enterprise-integration-schemas.md?tabs=standard).
643
+
* Upload these artifacts to your logic app resource using the Azure portal or Visual Studio Code. You can then use these artifacts across all child workflows in the *same* logic app resource. For more information, review [Add maps to use with workflows in Azure Logic Apps](../logic-apps/logic-apps-enterprise-integration-maps.md?tabs=standard) and [Add schemas to use with workflows in Azure Logic Apps](../logic-apps/logic-apps-enterprise-integration-schemas.md?tabs=standard).
644
644
645
645
*[Link your logic app resource to your integration account](../logic-apps/logic-apps-enterprise-integration-create-integration-account.md).
Copy file name to clipboardExpand all lines: articles/container-registry/tasks-agent-pools.md
+30-7Lines changed: 30 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,19 +93,41 @@ az acr agentpool update \
93
93
94
94
Task agent pools require access to the following Azure services. The following firewall rules must be added to any existing network security groups or user-defined routes.
95
95
96
-
| Direction | Protocol | Source | Source Port | Destination | Dest Port | Used |
| Outbound | TCP | VirtualNetwork | Any | AzureMonitor | 443,12000 | Default | Port 12000 is a unique port used for diagnostics |
103
103
104
104
> [!NOTE]
105
105
> If your tasks require additional resources from the public internet, add the corresponding rules. For example, additional rules are needed to run a docker build task that pulls the base images from Docker Hub, or restores a NuGet package.
106
106
107
107
Customers basing their deployments with MCR can refer to [MCR/MAR firewall rules.](https://github.com/microsoft/containerregistry/blob/main/docs/client-firewall-rules.md)
108
108
109
+
#### Advanced network configuration
110
+
111
+
If the standard Firewall/NSG (Network Security Group) rules are deemed too permissive, and more fine-grained control is required for outbound connections, consider the following approach:
112
+
113
+
- Enable service endpoints on the agent pool subnet. This grants the agent pool access to its service dependencies while maintaining a secure network posture.
114
+
- It's important to note that outbound Firewall/NSG rules are still necessary. These rules facilitate the Virtual Network's ability to switch the source IP from public to private, which is an additional step beyond enabling service endpoints.
115
+
116
+
More information on service endpoints is documented [here][az-vnet-svc-ep].
117
+
118
+
At minimum, the following service endpoints will be required
119
+
120
+
- Microsoft.AzureActiveDirectory
121
+
- Microsoft.ContainerRegistry
122
+
- Microsoft.EventHub
123
+
- Microsoft.KeyVault
124
+
- Microsoft.Storage (or the corresponding storage regions taking geo-replication into account)
125
+
126
+
> [!NOTE]
127
+
> Currently a service endpoint for Azure Monitor does not exist. If outbound traffic for Azure Monitor is not configured, the agent pool will be unable to emit diagnostic logs but may appear to still operate normally. In this case ACR will be unable to help fully troubleshoot any issues encountered so it is important that the network administrator take this into account when planning the network configuration.
128
+
129
+
Also, it is important to note that all of ACR Tasks have pre-cached images for some of the more common use cases. Tasks will only cache a single version at a time, meaning that if the full tagged image reference is used, then the build agent will attempt to pull the image. For example, a common use case is `cmd: mcr.microsoft.com/acr/acr-cli:<tag>`. However, the pre-cached version is frequently updated, which means the actual version on the machine will likely be higher. In this case, the network configuration must configure a route for outbound traffic to the target registry host which in the example above would be mcr.microsoft.com. The same rules would apply to any other external public registry (docker.io, quay.io, ghcr.io, etc.).
130
+
109
131
### Create pool in VNet
110
132
111
133
The following example creates an agent pool in the *mysubnet* subnet of network *myvnet*:
@@ -200,3 +222,4 @@ For more examples of container image builds and maintenance in the cloud, check
Copy file name to clipboardExpand all lines: articles/operator-service-manager/best-practices-onboard-deploy.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ We recommend that you first onboard and deploy your simplest NFs (one or two cha
28
28
- After the desired set of Azure Operator Service Manager publisher resources and artifacts is tested and approved for production use, we recommend marking the entire set as immutable to prevent accidental changes and ensure a consistent deployment experience. Consider relying on immutability capabilities to distinguish between resources and artifacts used in production versus the ones used for testing and development purposes. You can query the state of the publisher resources and the artifact manifests to determine which ones are marked as immutable. For more information, see [Publisher tenants, subscriptions, regions, and preview management](publisher-resource-preview-management.md).
29
29
30
30
Keep in mind the following logic:
31
-
- If Network Service Design Function (NSDV) is marked as immutable, CGS has to be marked as immutable too. Otherwise, the deployment call fails.
31
+
- If Network Service Design Version (NSDV) is marked as immutable, CGS has to be marked as immutable too. Otherwise, the deployment call fails.
32
32
- If Network Function Design Version (NFDV) is marked as immutable, the artifact manifest must be marked as immutable too. Otherwise, the deployment call fails.
33
33
- If only artifact manifest or CGS is marked immutable, the deployment call succeeds regardless of whether NFDV and NSDV are marked as immutable.
34
34
- Marking an artifact manifest as immutable ensures that all artifacts listed in that manifest (typically, charts, images, and Azure Resource Manager templates [ARM templates]) are marked immutable too by enforcing necessary permissions on the artifact store.
Copy file name to clipboardExpand all lines: articles/reliability/availability-zones-service-support.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ Azure offerings are grouped into three categories that reflect their _regional_
197
197
|[Azure SignalR](../azure-signalr/availability-zones.md)||
198
198
|[Azure Spring Apps](reliability-spring-apps.md#availability-zone-support)||
199
199
| Azure Storage: Ultra Disk ||
200
-
|[Azure VMware Services](../azure-vmware/architecture-private-clouds.md)|||
200
+
|[Azure VMware Services](../azure-vmware/architecture-private-clouds.md)||
201
201
|[Azure Web PubSub](../azure-web-pubsub/concept-availability-zones.md)||
202
202
|[Microsoft Fabric](reliability-fabric.md#availability-zone-support)||
0 commit comments