Possible errors when implementing HCIBox - Cloud beginner #2137
ebordim
started this conversation in
Show and tell
Replies: 1 comment
-
I created this video to help people prepare their OS to deploy HCIBox. I'm publishing it for the Brazilian community, and my colleagues managed to continue with the implementation. For those just starting out, the Jumpstart documentation seems confusing, but it's just details. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been following some colleagues from the community as they try to implement HCI through my video.
https://youtu.be/h4E9UNkXZGM
I identified that for a beginner, they need to prepare their OS to run DevCLI successfully.
I created a new video and the steps before implementation, I will post soon.
I post here the step by step to prepare your OS
Step by step for beginners
Install the Azure CLI
https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-windows?tabs=azure-cli
Run in PowerShell
Get-ExecutionPolicy -List
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Install WSL
https://learn.microsoft.com/en-us/windows/wsl/install
Installing PS on Ubuntu
https://learn.microsoft.com/en-us/powershell/scripting/install/install-ubuntu?view=powershell-7.3
Install-Module Az
https://learn.microsoft.com/en-us/powershell/azure/install-azps-linux?view=azps-10.4.1
Install the Azure CLI on Linux
https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt
Install the Azure Developer CLI (linux)
https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/install-azd?tabs=winget-windows%2Cbrew-mac%2Cscript-linux&pivots=os-linux
Start deployment
git clone https://github.com/microsoft/azure_arc.git
azd auth login
azd init
azd up
if you receive the Interactive authentication error, enter PowerShell using pwsh.
use the command: Connect-AzAccount -UseDeviceAuthentication
run the: azd up
Beta Was this translation helpful? Give feedback.
All reactions