Skip to content

Commit 16d86f7

Browse files
authored
Merge pull request #234610 from MicrosoftDocs/main
Publish to live, Sunday 4 AM PST, 4/16
2 parents c0bb13c + 7482ffa commit 16d86f7

File tree

54 files changed

+1087
-777
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

+1087
-777
lines changed

articles/azure-arc/kubernetes/extensions.md

Lines changed: 59 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Deploy and manage Azure Arc-enabled Kubernetes cluster extensions"
33
ms.custom: event-tier1-build-2022, ignite-2022
4-
ms.date: 03/08/2023
4+
ms.date: 04/14/2023
55
ms.topic: how-to
66
description: "Create and manage extension instances on Azure Arc-enabled Kubernetes clusters."
77
---
@@ -34,7 +34,7 @@ Before you begin, read the [conceptual overview of Arc-enabled Kubernetes cluste
3434
* [Upgrade your agents](agent-upgrade.md#manually-upgrade-agents) to the latest version.
3535
3636
> [!NOTE]
37-
> Installing Azure Arc extensions on [AKS hybrid clusters provisioned from Azure](#aks-hybrid-clusters-provisioned-from-azure-preview) is currently in preview, with support for the Azure Arc-enabled Open Service Mesh, Azure Key Vault Secrets Provider, Flux (GitOps) and Microsoft Defender for Cloud extensions.
37+
> Installing Azure Arc extensions on [AKS hybrid clusters provisioned from Azure](extensions.md#aks-hybrid-clusters-provisioned-from-azure-preview) is currently in preview, with support for the Azure Arc-enabled Open Service Mesh, Azure Key Vault Secrets Provider, Flux (GitOps) and Microsoft Defender for Cloud extensions.
3838
3939
## Create extension instance
4040
@@ -107,6 +107,12 @@ The following parameters are required when using `az k8s-extension create` to cr
107107

108108
Use one or more of these optional parameters as needed for your scenarios, along with the required parameters.
109109

110+
> [!NOTE]
111+
> You can choose to automatically upgrade your extension instance to the latest minor and patch versions by setting `auto-upgrade-minor-version` to `true`, or you can instead set the version of the extension instance manually using the `--version` parameter. We recommend enabling automatic upgrades for minor and patch versions so that you always have the latest security patches and capabilities.
112+
>
113+
> Because major version upgrades may include breaking changes, automatic upgrades for new major versions of an extension instance aren't supported. You can choose when to [manually upgrade extension instances](#upgrade-extension-instance) to a new major version.
114+
115+
110116
| Parameter name | Description |
111117
|--------------|------------|
112118
| `--auto-upgrade-minor-version` | Boolean property that determines whether the extension minor version is automatically upgraded. The default setting is `true`. If this parameter is set to `true`, you can't set the `version` parameter, as the version will be dynamically updated. If set to `false`, the extension won't be automatically upgraded, even for patch versions. |
@@ -116,7 +122,7 @@ Use one or more of these optional parameters as needed for your scenarios, along
116122
| `--configuration-protected-settings` | Settings that aren't retrievable using `GET` API calls or `az k8s-extension show` commands. Typically used to pass in sensitive settings. These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-protected-settings-file` can't be used in the same command. |
117123
| `--configuration-protected-settings-file` | Path to a JSON file with `key=value` pairs to be used for passing sensitive settings into the extension. If this parameter is used in the command, then `--configuration-protected-settings` can't be used in the same command. |
118124
| `--release-namespace` | This parameter indicates the namespace within which the release will be created. Only relevant if `scope` is set to `cluster`. |
119-
| `--release-train` | Extension authors can publish versions in different release trains such as `Stable`, `Preview`, etc. If this parameter isn't set explicitly, `Stable` is used as default. This parameter can't be used when `--auto-upgrade-minor-version` is set to `false`. |
125+
| `--release-train` | Extension authors can publish versions in different release trains such as `Stable`, `Preview`, etc. If this parameter isn't set explicitly, `Stable` is used as default. |
120126
| `--target-namespace` | Indicates the namespace within which the release will be created. Permission of the system account created for this extension instance will be restricted to this namespace. Only relevant if `scope` is set to `namespace`. |
121127

122128
## Show extension details
@@ -227,9 +233,58 @@ az k8s-extension list --cluster-name <clusterName> --resource-group <resourceGro
227233
]
228234
```
229235

236+
## Update extension instance
237+
238+
> [!NOTE]
239+
> Refer to documentation for the specific extension type to understand the specific settings in `--configuration-settings` and `--configuration-protected-settings` that are able to be updated. For `--configuration-protected-settings`, all settings are expected to be provided, even if only one setting is being updated. If any of these settings are omitted, those settings will be considered obsolete and deleted.
240+
241+
To update an existing extension instance, use `k8s-extension update`, passing in values for the mandatory and optional parameters. The mandatory and optional parameters are slightly different than those used to create an extension instance.
242+
243+
This example updates the `auto-upgrade-minor-version` setting for an Azure Machine Learning extension instance to `true`:
244+
245+
```azurecli
246+
az k8s-extension update --name azureml --extension-type Microsoft.AzureML.Kubernetes --scope cluster --cluster-name <clusterName> --resource-group <resourceGroupName> --auto-upgrade-minor-version true --cluster-type managedClusters
247+
```
248+
249+
### Required parameters for update
250+
251+
| Parameter name | Description |
252+
|----------------|------------|
253+
| `--name` | Name of the extension instance |
254+
| `--cluster-name` | Name of the cluster on which the extension instance has to be created |
255+
| `--resource-group` | The resource group containing the cluster |
256+
| `--cluster-type` | The cluster type on which the extension instance has to be created. For Azure Arc-enabled Kubernetes clusters, use `connectedClusters`. For AKS clusters, use `managedClusters`.|
257+
258+
### Optional parameters for update
259+
260+
| Parameter name | Description |
261+
|--------------|------------|
262+
| `--auto-upgrade-minor-version` | Boolean property that specifies whether the extension minor version is automatically upgraded. The default setting is `true`. If this parameter is set to true, you can't set the `version` parameter, as the version will be dynamically updated. If set to `false`, the extension won't be automatically upgraded, even for patch versions. |
263+
| `--version` | Version of the extension to be installed (specific version to pin the extension instance to). Must not be supplied if auto-upgrade-minor-version is set to `true`. |
264+
| `--configuration-settings` | Settings that can be passed into the extension to control its functionality.These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-settings-file` can't be used in the same command. Only the settings that require an update need to be provided. The provided settings will be replaced with the specified values. |
265+
| `--configuration-settings-file` | Path to the JSON file with `key=value` pairs to be used for passing in configuration settings to the extension. If this parameter is used in the command, then `--configuration-settings` can't be used in the same command. |
266+
| `--configuration-protected-settings` | Settings that aren't retrievable using `GET` API calls or `az k8s-extension show` commands. Typically used to pass in sensitive settings. These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-protected-settings-file` can't be used in the same command. When you update a protected setting, all of the protected settings are expected to be specified. If any of these settings are omitted, those settings will be considered obsolete and deleted. |
267+
| `--configuration-protected-settings-file` | Path to a JSON file with `key=value` pairs to be used for passing in sensitive settings to the extension. If this parameter is used in the command, then `--configuration-protected-settings` can't be used in the same command. |
268+
| `--scope` | Scope of installation for the extension - `cluster` or `namespace`. |
269+
| `--release-train` | Extension authors can publish versions in different release trains such as `Stable`, `Preview`, etc. If this parameter isn't set explicitly, `Stable` is used as default. |
270+
271+
## Upgrade extension instance
272+
273+
As noted earlier, if you set `auto-upgrade-minor-version` to true, the extension will automatically be upgraded when a new minor version is released. For most scenarios, we recommend enabling automatic upgrades. If you set `auto-upgrade-minor-version` to false, you'll have to upgrade the extension manually if you want a newer version.
274+
275+
Manual upgrades are also required to get a new major instance of an extension. You can choose when to upgrade in order to avoid any unexpected breaking changes with major version upgrades.
276+
277+
To manually upgrade an extension instance, use `k8s-extension update` and set the `version` parameter to specify a version.
278+
279+
This example updates an Azure Machine Learning extension instance to version x.y.z:
280+
281+
```azurecli
282+
az k8s-extension update --cluster-name <clusterName> --resource-group <resourceGroupName> --cluster-type connectedClusters --name azureml --version x.y.z
283+
```
284+
230285
## Delete extension instance
231286

232-
To delete an extension instance on a cluster, use `k8s-extension delete`, passing in values for the mandatory parameters.
287+
To delete an extension instance on a cluster, use `k8s-extension delete`, passing in values for the mandatory parameters:
233288

234289
```azurecli
235290
az k8s-extension delete --name azuremonitor-containers --cluster-name <clusterName> --resource-group <resourceGroupName> --cluster-type connectedClusters

articles/azure-monitor/autoscale/autoscale-predictive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use predictive autoscale to scale out before load demands in virtual machine scale sets (preview)
2+
title: Use predictive autoscale to scale out before load demands in virtual machine scale sets
33
description: This article provides information on the new predictive autoscale feature in Azure Monitor.
44
ms.topic: conceptual
55
author: EdB-MSFT

articles/azure-monitor/logs/logs-data-export.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,11 +679,26 @@ If the data export rule includes an unsupported table, the configuration will su
679679
| ACSRoomsIncomingOperations | |
680680
| ACSSMSIncomingOperations | |
681681
| ADAssessmentRecommendation | |
682+
| AddonAzureBackupAlerts | |
683+
| AddonAzureBackupJobs | |
684+
| AddonAzureBackupPolicy | |
685+
| AddonAzureBackupProtectedInstance | |
686+
| AddonAzureBackupStorage | |
682687
| ADFActivityRun | |
688+
| ADFAirflowSchedulerLogs | |
683689
| ADFAirflowTaskLogs | |
690+
| ADFAirflowWebLogs | |
684691
| ADFAirflowWorkerLogs | |
685692
| ADFPipelineRun | |
693+
| ADFSandboxActivityRun | |
694+
| ADFSandboxPipelineRun | |
686695
| ADFSSignInLogs | |
696+
| ADFSSISIntegrationRuntimeLogs | |
697+
| ADFSSISPackageEventMessageContext | |
698+
| ADFSSISPackageEventMessages | |
699+
| ADFSSISPackageExecutableStatistics | |
700+
| ADFSSISPackageExecutionComponentPhases | |
701+
| ADFSSISPackageExecutionDataStatistics | |
687702
| ADFTriggerRun | |
688703
| ADPAudit | |
689704
| ADPDiagnostics | |
@@ -696,7 +711,10 @@ If the data export rule includes an unsupported table, the configuration will su
696711
| ADTModelsOperation | |
697712
| ADTQueryOperation | |
698713
| ADXCommand | |
714+
| ADXJournal | |
699715
| ADXQuery | |
716+
| ADXTableDetails | |
717+
| ADXTableUsageStatistics | |
700718
| AegDataPlaneRequests | |
701719
| AegDeliveryFailureLogs | |
702720
| AegPublishFailureLogs | |
@@ -714,6 +732,10 @@ If the data export rule includes an unsupported table, the configuration will su
714732
| AgriFoodWeatherLogs | |
715733
| AGSGrafanaLoginEvents | |
716734
| AHDSMedTechDiagnosticLogs | |
735+
| AirflowDagProcessingLogs | |
736+
| AKSAudit | |
737+
| AKSAuditAdmin | |
738+
| AKSControlPlane | |
717739
| Alert | Partial support. Data ingestion for Zabbix alerts isn't supported. |
718740
| AlertEvidence | |
719741
| AlertInfo | |
@@ -738,6 +760,7 @@ If the data export rule includes an unsupported table, the configuration will su
738760
| AMSMediaAccountHealth | |
739761
| AMSStreamingEndpointRequests | |
740762
| ANFFileAccess | |
763+
| Anomalies | |
741764
| ApiManagementGatewayLogs | |
742765
| AppAvailabilityResults | |
743766
| AppBrowserTimings | |
@@ -810,6 +833,7 @@ If the data export rule includes an unsupported table, the configuration will su
810833
| CDBPartitionKeyRUConsumption | |
811834
| CDBPartitionKeyStatistics | |
812835
| CDBQueryRuntimeStatistics | |
836+
| ChaosStudioExperimentEventLogs | |
813837
| CIEventsAudit | |
814838
| CIEventsOperational | |
815839
| CloudAppEvents | |
@@ -872,7 +896,7 @@ If the data export rule includes an unsupported table, the configuration will su
872896
| EmailEvents | |
873897
| EmailPostDeliveryEvents | |
874898
| EmailUrlInfo | |
875-
| Event | Partial support. Data arriving from the Log Analytics agent (MMA) or Azure Monitor Agent (AMA) is fully supported in export. Data arriving via the Diagnostics extension agent is collected through storage. This path isn't supported in export. |
899+
| Event | Partial support. Data arriving from the Log Analytics agent or Azure Monitor Agent is fully supported in export. Data arriving via the Diagnostics extension agent is collected through storage. This path isn't supported in export. |
876900
| ExchangeAssessmentRecommendation | |
877901
| ExchangeOnlineAssessmentRecommendation | |
878902
| FailedIngestion | |
@@ -913,6 +937,7 @@ If the data export rule includes an unsupported table, the configuration will su
913937
| Heartbeat | |
914938
| HuntingBookmark | |
915939
| IdentityDirectoryEvents | |
940+
| IdentityInfo | |
916941
| IdentityLogonEvents | |
917942
| IdentityQueryEvents | |
918943
| InsightsMetrics | Partial support. Some of the data is ingested through internal services that aren't supported in export. Currently, this portion is missing in export. |
@@ -924,6 +949,7 @@ If the data export rule includes an unsupported table, the configuration will su
924949
| KubeMonAgentEvents | |
925950
| KubeNodeInventory | |
926951
| KubePodInventory | |
952+
| KubePVInventory | |
927953
| KubeServices | |
928954
| LAQueryLogs | |
929955
| LogicAppWorkflowRuntime | |
@@ -938,6 +964,7 @@ If the data export rule includes an unsupported table, the configuration will su
938964
| MicrosoftHealthcareApisAuditLogs | |
939965
| MicrosoftPurviewInformationProtection | |
940966
| NetworkAccessTraffic | |
967+
| NetworkMonitoring | |
941968
| NSPAccessLogs | |
942969
| NTAIpDetails | |
943970
| NTANetAnalytics | |
@@ -952,7 +979,7 @@ If the data export rule includes an unsupported table, the configuration will su
952979
| OLPSupplyChainEntityOperations | |
953980
| OLPSupplyChainEvents | |
954981
| Operation | Partial support. Some of the data is ingested through internal services that aren't supported in export. Currently, this portion is missing in export. |
955-
| Perf | Partial support. Only Windows perf data is currently supported. Currently, the Linux perf data is missing in export. |
982+
| Perf | |
956983
| PFTitleAuditLogs | |
957984
| PowerBIActivity | |
958985
| PowerBIAuditTenant | |
@@ -991,13 +1018,17 @@ If the data export rule includes an unsupported table, the configuration will su
9911018
| SQLSecurityAuditEvents | |
9921019
| SqlVulnerabilityAssessmentScanStatus | |
9931020
| StorageAntimalwareScanResults | |
1021+
| StorageBlobLogs | |
9941022
| StorageCacheOperationEvents | |
9951023
| StorageCacheUpgradeEvents | |
9961024
| StorageCacheWarningEvents | |
1025+
| StorageFileLogs | |
9971026
| StorageMalwareScanningResults | |
9981027
| StorageMoverCopyLogsFailed | |
9991028
| StorageMoverCopyLogsTransferred | |
10001029
| StorageMoverJobRunLogs | |
1030+
| StorageQueueLogs | |
1031+
| StorageTableLogs | |
10011032
| SucceededIngestion | |
10021033
| SynapseBigDataPoolApplicationsEnded | |
10031034
| SynapseBuiltinSqlPoolRequestsEnded | |
@@ -1021,7 +1052,11 @@ If the data export rule includes an unsupported table, the configuration will su
10211052
| TSIIngress | |
10221053
| UCClient | |
10231054
| UCDOAggregatedStatus | |
1055+
| UCClientReadinessStatus | |
1056+
| UCClientUpdateStatus | |
1057+
| UCDeviceAlert | |
10241058
| UCDOStatus | |
1059+
| UCServiceUpdateStatus | |
10251060
| Update | Partial support. Some of the data is ingested through internal services that aren't supported in export. Currently, this portion is missing in export. |
10261061
| UpdateRunProgress | |
10271062
| UpdateSummary | |
@@ -1031,10 +1066,10 @@ If the data export rule includes an unsupported table, the configuration will su
10311066
| UserPeerAnalytics | |
10321067
| VIAudit | |
10331068
| VIIndexing | |
1069+
| W3CIISLog | Partial support. Data arriving from the Log Analytics agent or Azure Monitor Agent is fully supported in export. Data arriving via the Diagnostics extension agent is collected through storage. This path isn't supported in export. |
10341070
| WaaSDeploymentStatus | |
10351071
| WaaSInsiderStatus | |
10361072
| WaaSUpdateStatus | |
1037-
| W3CIISLog | Partial support. Data arriving from Log Analytics agent (MMA) or Azure Monitor Agent (AMA) is fully supported in export. Data arriving via Diagnostics extension agent is collected through storage while this path isn’t supported in export. |
10381073
| Watchlist | |
10391074
| WebPubSubConnectivity | |
10401075
| WebPubSubHttpRequest | |
259 KB
Loading

0 commit comments

Comments
 (0)