Skip to content

Commit 382bc51

Browse files
committed
Hub freshness
1 parent e5d6c26 commit 382bc51

File tree

2 files changed

+69
-81
lines changed

2 files changed

+69
-81
lines changed
Lines changed: 26 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
title: Apply an OEM update to Azure Stack Hub
3-
description: Learn to apply an original equipment manufacturer (OEM) update to Azure Stack Hub.
3+
description: Learn how to apply an original equipment manufacturer (OEM) update to Azure Stack Hub.
44
author: sethmanheim
55
ms.topic: how-to
6-
ms.date: 06/24/2021
6+
ms.date: 01/28/2025
77
ms.author: sethm
88
ms.lastreviewed: 03/04/2020
9-
ms.reviewer: ppacent
109

1110
# Intent: As an Azure Stack Hub operator, I want to apply an OEM update to Azure Stack Hub so I can get driver updates and security patches.
1211
# Keyword: OEM update azure stack hub
@@ -23,15 +22,13 @@ In addition to Microsoft Azure Stack Hub updates, many OEMs also release regular
2322

2423
These OEM package updates are uploaded into the **updateadminaccount** storage account and applied via the Azure Stack Hub administrator portal. For more information, see [Applying OEM updates](#apply-oem-updates).
2524

26-
Ask your OEM about their specific notification process to ensure OEM package update notifications reach your organization.
27-
28-
Some hardware vendors may require a *hardware vendor VM* that handles the internal firmware update process. For more information, see [Configure hardware vendor VM](#configure-hardware-vendor-vm).
25+
Ask your OEM about their specific notification process to ensure OEM package update notifications reach your organization. Some hardware vendors might require a *hardware vendor VM* that handles the internal firmware update process. For more information, see [Configure hardware vendor VM](#configure-hardware-vendor-vm).
2926

3027
## OEM contact information
3128

3229
This section contains OEM contact information and links to OEM Azure Stack Hub reference material.
3330

34-
| Hardware Partner | Region | URL |
31+
| Hardware partner | Region | URL |
3532
|-----|----|-----|
3633
| Cisco | All | [Cisco Integrated System for Microsoft Azure Stack Hub Operations Guide](https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/azure-stack/b_Azure_Stack_Operations_Guide_4-0/b_Azure_Stack_Operations_Guide_4-0_chapter_01000.html)<br><br>[UCS C-Series Rack-Mount UCS-Managed Server Software](https://www.cisco.com/c/en/us/support/servers-unified-computing/ucs-c-series-rack-mount-ucs-managed-server-software/series.html) |
3734
| Dell EMC | All | [Cloud for Microsoft Azure Stack Hub 14G (account and login required)](https://support.emc.com/downloads/44615_Cloud-for-Microsoft-Azure-Stack-14G)<br><br>[Cloud for Microsoft Azure Stack Hub 13G (account and login required)](https://support.emc.com/downloads/42238_Cloud-for-Microsoft-Azure-Stack-13G) |
@@ -47,41 +44,41 @@ This section contains OEM contact information and links to OEM Azure Stack Hub r
4744
Apply the OEM packages with the following steps:
4845

4946
> [!IMPORTANT]
50-
> Before applying updates in Azure Stack Hub, ensure you've completed **ALL** steps in the [Pre-update checklist](release-notes-checklist.md) and have scheduled an appropriate maintenance window for the update type that you're applying.
47+
> Before applying updates in Azure Stack Hub, ensure that you completed all steps in the [Pre-update checklist](release-notes-checklist.md), and you scheduled an appropriate maintenance window for the update type that you're applying.
5148
5249
1. Contact your OEM to:
5350
- Determine the current version of your OEM package.
5451
- Find the best method to download your OEM package.
55-
2. Before applying an OEM package update, always apply the latest Azure Stack Hub hotfix available on your system's current Azure Stack Hub version. For more information on hotfixes, see [Azure Stack Hub hotfixes](azure-stack-servicing-policy.md).
56-
3. Prepare your OEM package with the steps outlined in [Download update packages for integrated systems](azure-stack-servicing-policy.md).
57-
4. Apply the updates with the steps outlined in [Apply updates in Azure Stack Hub](azure-stack-apply-updates.md).
52+
1. Before you apply an OEM package update, always apply the latest Azure Stack Hub hotfix available on your system's current Azure Stack Hub version. For more information about hotfixes, see [Azure Stack Hub hotfixes](azure-stack-servicing-policy.md#hotfixes).
53+
1. Prepare your OEM package with the steps outlined in [Download update packages for integrated systems](azure-stack-servicing-policy.md).
54+
1. Apply the updates with the steps outlined in [Apply updates in Azure Stack Hub](azure-stack-apply-updates.md).
5855

5956
## Configure hardware vendor VM
6057

61-
Some hardware vendors may require a virtual machine (VM) to help with the OEM update process. Your hardware vendor is responsible for creating these VMs and documenting if you require `ProxyVM` or `HardwareManager` for **-VMType** when running the **Set-OEMExternalVM** cmdlet, as well as which credential should be used for **-Credential**. Once the VMs are created, configure them with the **Set-OEMExternalVM** from the privileged endpoint.
58+
Some hardware vendors might require a virtual machine (VM) to help with the OEM update process. Your hardware vendor is responsible for creating these VMs and documenting if you require `ProxyVM` or `HardwareManager` for **-VMType** when running the **Set-OEMExternalVM** cmdlet, as well as which credential should be used for **-Credential**. Once the VMs are created, configure them with the **Set-OEMExternalVM** from the privileged endpoint.
6259

63-
For more information on the privileged endpoint in Azure Stack Hub, see [Using the privileged endpoint in Azure Stack Hub](azure-stack-privileged-endpoint.md).
60+
For more information about the privileged endpoint in Azure Stack Hub, see [Using the privileged endpoint in Azure Stack Hub](azure-stack-privileged-endpoint.md).
6461

6562
1. Access the privileged endpoint.
6663

67-
```powershell
68-
$cred = Get-Credential
69-
$session = New-PSSession -ComputerName <IP Address of ERCS> `
70-
-ConfigurationName PrivilegedEndpoint -Credential $cred `
71-
-SessionOption (New-PSSessionOption -Culture en-US -UICulture en-US)
72-
```
64+
```powershell
65+
$cred = Get-Credential
66+
$session = New-PSSession -ComputerName <IP Address of ERCS> `
67+
-ConfigurationName PrivilegedEndpoint -Credential $cred `
68+
-SessionOption (New-PSSessionOption -Culture en-US -UICulture en-US)
69+
```
7370

74-
2. Configure the hardware vendor VM using the **Set-OEMExternalVM** cmdlet. The cmdlet validates the IP address and credentials for **-VMType** `ProxyVM`. For **-VMType** `HardwareManager`, the cmdlet won't validate the input. The **-Credential** parameter provided to **Set-OEMExternalVM** is one that will be clearly documented by the hardware vendor documentation. It is *NOT* the CloudAdmin credential used with the privileged endpoint, or any other existing Azure Stack Hub credential.
71+
1. Configure the hardware vendor VM using the **Set-OEMExternalVM** cmdlet. The cmdlet validates the IP address and credentials for **-VMType** `ProxyVM`. For **-VMType** `HardwareManager`, the cmdlet doesn't validate the input. The **-Credential** parameter provided to **Set-OEMExternalVM** is one that's clearly documented by the hardware vendor documentation. It isn't the **CloudAdmin** credential used with the privileged endpoint, or any other existing Azure Stack Hub credential.
7572

76-
```powershell
77-
$VmCred = Get-Credential
78-
Invoke-Command -Session $session
79-
{
80-
Set-OEMExternalVM -VMType <Either "ProxyVM" or "HardwareManager">
81-
-IPAddress <IP Address of hardware vendor VM> -Credential $using:VmCred
82-
}
83-
```
73+
```powershell
74+
$VmCred = Get-Credential
75+
Invoke-Command -Session $session
76+
{
77+
Set-OEMExternalVM -VMType <Either "ProxyVM" or "HardwareManager">
78+
-IPAddress <IP Address of hardware vendor VM> -Credential $using:VmCred
79+
}
80+
```
8481

8582
## Next steps
8683

87-
- [Azure Stack Hub updates](azure-stack-updates.md)
84+
[Azure Stack Hub updates](azure-stack-updates.md)

0 commit comments

Comments
 (0)