Skip to content

Commit

Permalink
Upgrade packages (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored Jun 28, 2018
1 parent 9b9976e commit d350b60
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions install/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ all: awless \
yq

export AWLESS_VERSION ?= 0.1.11
# Releases: https://github.com/wallix/awless/releases
## Install awless a powerful, innovative and small surface command line interface (CLI) to manage Amazon Web Services
awless:
mkdir -p $(TMP)/$@
Expand All @@ -40,22 +41,26 @@ awless:
rm -rf $(TMP)/$@
chmod +x $(INSTALL_PATH)/$@

export AWS_VAULT_VERSION ?= 4.2.0
export AWS_VAULT_VERSION ?= 4.2.1
# Releases: https://github.com/99designs/aws-vault/releases
## Install aws-vault to easily assume roles (not related to HashiCorp Vault)
aws-vault:
$(call github_download_binary_release,99designs,v$(AWS_VAULT_VERSION),$@-$(OS)-$(ARCH))

export CFSSL_VERSION ?= 1.3.2
# Releases: https://github.com/cloudflare/cfssl/releases
## Install cfssl - Cloudflare's PKI and TLS toolkit
cfssl:
@echo "The '$@' package is only availble in cloudposse/packages docker image"

export CHAMBER_VERSION ?= 2.0.0
export CHAMBER_VERSION ?= 2.1.0
# Releases: https://github.com/segmentio/chamber/releases
## Install Chamber to manage secrets with SSM+KMS
chamber:
$(call github_download_binary_release,segmentio,v$(CHAMBER_VERSION),$@-v$(CHAMBER_VERSION)-$(OS)-$(ARCH))

export FETCH_VERSION ?= 0.2.0
# Releases: https://github.com/gruntwork-io/fetch/releases
## Install fetch to easily download files, folders, and release assets from a specific git commit, branch, or tag
fetch:
$(call github_download_binary_release,gruntwork-io,v$(FETCH_VERSION),$@_$(OS)_$(ARCH))
Expand All @@ -75,11 +80,13 @@ github-release:
chmod +x $(INSTALL_PATH)/$@

export GOMPLATE_VERSION ?= 2.6.0
# Releases: https://github.com/hairyhenderson/gomplate/releases
## Install gomplate
gomplate:
$(call github_download_binary_release,hairyhenderson,v$(GOMPLATE_VERSION),$@_$(OS)-$(ARCH)-slim)

export GOOFYS_VERSION ?= 0.19.0
# Releases: https://github.com/kahing/goofys/releases
## Install goofys
goofys:
$(call github_download_binary_release,kahing,v$(GOOFYS_VERSION),$@)
Expand All @@ -96,6 +103,7 @@ helm:

export HELMFILE_VENDOR ?= roboll
export HELMFILE_VERSION ?= 0.20.0
# Releases: https://github.com/roboll/helmfile/releases
## Install helmfile to easily deploy collections of helm charts
helmfile:
$(call github_download_binary_release,$(HELMFILE_VENDOR),v$(HELMFILE_VERSION),$@_$(OS)_$(ARCH))
Expand All @@ -112,6 +120,7 @@ htmltest-linux:
$(CURL) -o - https://github.com/wjdp/htmltest/releases/download/v$(HTMLTEST_VERSION)/htmltest_$(HTMLTEST_VERSION)_$(OS)_$(ARCH).tar.gz | tar -C $(INSTALL_PATH) -zx htmltest
chmod +x $(INSTALL_PATH)/htmltest

# Releases: https://github.com/wjdp/htmltest/releases
## Install htmltest
htmltest: htmltest-$(OS)
@exit 0
Expand All @@ -126,23 +135,27 @@ hugo-linux:
$(CURL) -o - https://github.com/gohugoio/hugo/releases/download/v$(HUGO_VERSION)/hugo_$(HUGO_VERSION)_Linux-64bit.tar.gz | tar -zxO hugo > $(INSTALL_PATH)/hugo
chmod +x $(INSTALL_PATH)/hugo

export HUGO_VERSION ?= 0.40.1
export HUGO_VERSION ?= 0.40.2
# Releases: https://github.com/gohugoio/hugo/releases
## Install hugo framework for building static websites.
hugo: hugo-$(OS)
@exit 0

export KOPS_VERSION ?= 1.8.0
export KOPS_VERSION ?= 1.9.1
# Releases: https://github.com/kubernetes/kops/releases
## Install kops
kops:
$(call github_download_binary_release,kubernetes,$(KOPS_VERSION),$@-$(OS)-$(ARCH))

export KUBECTL_VERSION ?= 1.8.7
export KUBECTL_VERSION ?= 1.9.1
# Releases: https://github.com/kubernetes/kubernetes/releases
## Install kubectl
kubectl:
$(CURL) -o $(INSTALL_PATH)/$@ https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/$(OS)/$(ARCH)/kubectl
chmod +x $(INSTALL_PATH)/$@

export KUBECTX_VERSION ?= 0.5.0
# Releases: https://github.com/ahmetb/kubectx/releases
## Install kubectx
kubectx:
$(CURL) -o $(INSTALL_PATH)/$@ https://raw.githubusercontent.com/ahmetb/$@/v$(KUBECTX_VERSION)/$@
Expand All @@ -164,7 +177,8 @@ export STERN_VERSION ?= 1.7.0
stern:
$(call github_download_binary_release,wercker,$(STERN_VERSION),$@_$(OS)_$(ARCH))

export TERRAFORM_VERSION ?= 0.11.5
export TERRAFORM_VERSION ?= 0.11.7
# Releases: https://github.com/hashicorp/terraform/releases
## Install Terraform
terraform:
mkdir -p $(TMP)/$@
Expand All @@ -174,11 +188,13 @@ terraform:
chmod +x $(INSTALL_PATH)/$@

export TERRAFORM_DOCS_VERSION ?= 0.3.0
# Releases: https://github.com/segmentio/terraform-docs/releases
## Install terraform-docs to generate docs from terraform modules
terraform-docs:
$(call github_download_binary_release,segmentio,v$(TERRAFORM_DOCS_VERSION),$@_$(OS)_$(ARCH))

export TERRAGRUNT_VERSION ?= 0.14.7
export TERRAGRUNT_VERSION ?= 0.14.11
# Releases: https://github.com/gruntwork-io/terragrunt/releases
## Install terragrunt for tools that make it easier to work with multiple Terraform modules
terragrunt:
$(call github_download_binary_release,gruntwork-io,v$(TERRAGRUNT_VERSION),$@_$(OS)_$(ARCH))
Expand Down

0 comments on commit d350b60

Please sign in to comment.