Skip to content

Instantly share code, notes, and snippets.

View iamhalje's full-sized avatar

Dmitry Ponomaryov iamhalje

View GitHub Profile
@iamhalje
iamhalje / prep-windows-node-step1.ps1
Last active April 7, 2026 12:35 — forked from jonaskello/prep-windows-node-step1.ps1
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
@iamhalje
iamhalje / Spark high availability.md
Created December 1, 2025 18:41 — forked from aseigneurin/Spark high availability.md
Spark - High availability

Spark - High availability

Components in play

As a reminder, here are the components in play to run an application:

  • The cluster:
    • Spark Master: coordinates the resources
    • Spark Workers: offer resources to run the applications
  • The application: