You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Debug "'$PSCommandPath' is including file '$_'"
$path = join-path $PSScriptRoot $_
if (-not (Test-Path $path)) {
Write-Error "Unable to find file script dependency at $path. Please download the entire GitHub repository and rerun the downloaded copy of this script."
}
. $path | out-null
}
$prereqMessages = @()
if (-not (Test-SetupPreqs ([ref]$prereqMessages) -checkKubectlVersion)) {
Write-Host "`nYour system does not meet the Guided Setup prerequisites:`n"
$prereqMessages | ForEach-Object {
Write-Host "* $_`n"
}
exit 1
}
Write-Host "`n`nYour system meets the Guided Setup prerequisites.`n"