Azure Tags
David Segura
This page is incomplete
You're probably wondering why Tags are used by OSDCloud, and why it won't work without them. The way OSDCloud works in Azure is that it needs to locate the WIM files that are in a Container that are within a Storage Account
Get-AzStorageAccount (Az.Storage)
This PowerShell cmdlet is used to get all the Storage Accounts that you can see in your Azure Subscription with the (Storage Account) Reader role. In my case, I have 13 Storage Accounts
Ideally, you should assign Rights to limit what I can read from, but as an Azure Global Admin, I get to see everything. Additionally, not all of these Storage Accounts are used for OSD. Some are used by Functions, or Reporting, etc.
Get-AzTag (Az.Resources)
You can see all the Tags (Key) in your Azure Subscription using this cmdlet. In the example below, I have two Azure Resources that have an OSDCloud Tag
Tags Property
PowerShell makes it easy to see which Storage Accounts are used by OSDCloud
Last updated