Skip to content

Instantly share code, notes, and snippets.

View jonaskello's full-sized avatar

Jonas Kello jonaskello

View GitHub Profile
@jonaskello
jonaskello / prep-windows-node-step1.ps1
Last active December 15, 2023 05:55
Install k8s windows nodes
# Make sure you have enabled "Expose hardware assisted virtualization to the guest OS" for the VMWare CPU
Write-Host "##############################`nInstalling features: Containers, Hyper-V, Hyper-V-PowerShell`n##############################`n"
Install-WindowsFeature Containers
Install-WindowsFeature Hyper-V
Install-WindowsFeature Hyper-V-PowerShell
Write-Host "##############################`nDisabling firewall`n##############################`n"
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False