mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
12 lines
324 B
Bash
Executable file
12 lines
324 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeou pipefail
|
|
|
|
KUBECTL_VERSION=${1}
|
|
KUBECTL_DOWNLOAD_SHA256=${2}
|
|
KUBECTL_DOWNLOAD_URL="https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${TARGETARCH:-amd64}/kubectl"
|
|
|
|
/scripts/download-file kubectl "$KUBECTL_DOWNLOAD_URL" $KUBECTL_DOWNLOAD_SHA256
|
|
|
|
chmod +x kubectl
|
|
mv kubectl /usr/local/bin/kubectl
|