mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
26 lines
575 B
PowerShell
26 lines
575 B
PowerShell
################################################################################
|
|
## File: Validate-KubernetesCli.ps1
|
|
## Desc: Validate KubernetesCli.
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'kubectl')
|
|
{
|
|
Write-Host "kubectl $(kubectl version --client=true --short=true) in path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "kubectl is not in path"
|
|
exit 1
|
|
}
|
|
|
|
if (Get-Command -Name 'minikube')
|
|
{
|
|
Write-Host "minikube $(minikube version --short) in path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "minikube is not in path"
|
|
exit 1
|
|
}
|
|
|