You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/setup/install_eksctl.sh

66 lines
1.5 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# shellcheck disable=SC2230
# command -v catches aliases, not suitable
#
# Author: Hari Sekhon
# Date: 2020-12-11 11:59:42 +0000 (Fri, 11 Dec 2020)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying LICENSE file
#
# https://www.linkedin.com/in/HariSekhon
#
#"$srcdir/install_homebrew.sh"
#brew tap weaveworks/tap
#brew install weaveworks/tap/eksctl
#brew upgrade eksctl
#brew link --overwrite eksctl
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090
. "$srcdir/../lib/utils.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Installs AWS eksctl CLI from WeaveWorks
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="[<version>]"
export PATH="$PATH:$HOME/bin"
help_usage "$@"
#min_args 1 "$@"
#version="${1:-2.4.0}"
version="${1:-latest}"
owner_repo="weaveworks/eksctl"
if [ "$version" = latest ]; then
timestamp "determining latest version of '$owner_repo' via GitHub API"
version="$("$srcdir/../github_repo_latest_release.sh" "$owner_repo")"
version="${version#v}"
timestamp "latest version is '$version'"
else
is_semver "$version" || die "non-semver version argument given: '$version' - should be in format: N.N.N"
fi
os="$(get_os)"
if [ "$os" = darwin ]; then
os=macOS
fi
export RUN_VERSION_ARG=1
"$srcdir/../install_binary.sh" "https://github.com/$owner_repo/releases/download/v$version/eksctl_{os}_{arch}.tar.gz" eksctl