mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
8 lines
222 B
PowerShell
8 lines
222 B
PowerShell
|
param (
|
||
|
[string]$kubectl_version
|
||
|
)
|
||
|
|
||
|
$ErrorActionPreference = "Stop";
|
||
|
|
||
|
Invoke-WebRequest -O "dist/kubectl.exe" "https://storage.googleapis.com/kubernetes-release/release/$($kubectl_version)/bin/windows/amd64/kubectl.exe"
|