mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
10 lines
256 B
Bash
Executable file
10 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
KIND_VERSION=${1}
|
|
KIND_DOWNLOAD_SHA256=${2}
|
|
|
|
/scripts/download-file "kind" "https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-${TARGETARCH:-amd64}" "$KIND_DOWNLOAD_SHA256"
|
|
chmod +x kind
|
|
mv kind /usr/local/bin/ && kind --version
|