Skip to content

Commit

Permalink
Update atlantis to 0.17.0 (#1192)
Browse files Browse the repository at this point in the history
* Update atlantis to 0.16.1 → 0.17.0

* Add Alpine libc6-compat dependency

Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
Co-authored-by: Nuru <Nuru@users.noreply.github.com>
  • Loading branch information
3 people authored May 4, 2021
1 parent c87e595 commit 4f1f841
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ Here are some solutions to several common problems that may occur when adding a
[![amtool](https://github.com/cloudposse/packages/workflows/amtool/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aamtool) | 0.21.0 | Tool for interacting with the Alertmanager API
[![argocd](https://github.com/cloudposse/packages/workflows/argocd/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aargocd) | 2.0.1 | Declarative GitOpts for Kubernetes
[![assume-role](https://github.com/cloudposse/packages/workflows/assume-role/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aassume-role) | 0.3.2 | Easily assume AWS roles in your terminal.
[![atlantis](https://github.com/cloudposse/packages/workflows/atlantis/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.16.1 | Terraform For Teams
[![atlantis](https://github.com/cloudposse/packages/workflows/atlantis/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.17.0 | Terraform For Teams
[![atmos](https://github.com/cloudposse/packages/workflows/atmos/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatmos) | 0.17.2 | Universal Tool for DevOps and Cloud Automation
[![awless](https://github.com/cloudposse/packages/workflows/awless/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aawless) | 0.1.11 | A Mighty CLI for AWS
[![aws-iam-authenticator](https://github.com/cloudposse/packages/workflows/aws-iam-authenticator/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-iam-authenticator) | 0.5.3 | A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
Expand Down
2 changes: 1 addition & 1 deletion docs/badges.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![amtool](https://github.com/cloudposse/packages/workflows/amtool/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aamtool) | 0.21.0 | Tool for interacting with the Alertmanager API
[![argocd](https://github.com/cloudposse/packages/workflows/argocd/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aargocd) | 2.0.1 | Declarative GitOpts for Kubernetes
[![assume-role](https://github.com/cloudposse/packages/workflows/assume-role/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aassume-role) | 0.3.2 | Easily assume AWS roles in your terminal.
[![atlantis](https://github.com/cloudposse/packages/workflows/atlantis/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.16.1 | Terraform For Teams
[![atlantis](https://github.com/cloudposse/packages/workflows/atlantis/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.17.0 | Terraform For Teams
[![atmos](https://github.com/cloudposse/packages/workflows/atmos/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aatmos) | 0.17.2 | Universal Tool for DevOps and Cloud Automation
[![awless](https://github.com/cloudposse/packages/workflows/awless/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aawless) | 0.1.11 | A Mighty CLI for AWS
[![aws-iam-authenticator](https://github.com/cloudposse/packages/workflows/aws-iam-authenticator/badge.svg?branch=master)](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-iam-authenticator) | 0.5.3 | A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
Expand Down
2 changes: 1 addition & 1 deletion docs/targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
amtool 0.21.0 Tool for interacting with the Alertmanager API
argocd 2.0.1 Declarative GitOpts for Kubernetes
assume-role 0.3.2 Easily assume AWS roles in your terminal.
atlantis 0.16.1 Terraform For Teams
atlantis 0.17.0 Terraform For Teams
atmos 0.17.2 Universal Tool for DevOps and Cloud Automation
awless 0.1.11 A Mighty CLI for AWS
aws-iam-authenticator 0.5.3 A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
Expand Down
6 changes: 5 additions & 1 deletion vendor/atlantis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export VENDOR ?= runatlantis
export DOWNLOAD_URL ?= $(PACKAGE_REPO_URL)/releases/download/v$(PACKAGE_VERSION)/$(PACKAGE_NAME)_$(OS)_$(ARCH).zip
export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary
export APKBUILD_DEPENDS += dpkg
export APKBUILD_DEPENDS += dpkg libc6-compat
export APKBUILD_INSTALL_SCRIPTS = $(PACKAGE_NAME).post-install $(PACKAGE_NAME).post-deinstall
export MASTER_PACKAGE_NAME = atlantis
export INSTALL_DIR = /usr/share/${MASTER_PACKAGE_NAME}/${VENDOR}/bin
Expand All @@ -13,5 +13,9 @@ install:
$(call download_zip)

test:
@echo testing atlantis
atlantis
@echo checking atlantis version against $(PACKAGE_VERSION)
$(PACKAGE_EXE) version
$(PACKAGE_EXE) version | grep -F $(PACKAGE_VERSION)

2 changes: 1 addition & 1 deletion vendor/atlantis/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.1
0.17.0

0 comments on commit 4f1f841

Please sign in to comment.