diff --git a/.github/auto-label.yml b/.github/auto-label.yml
index a0f83915a1..3d768c17b6 100644
--- a/.github/auto-label.yml
+++ b/.github/auto-label.yml
@@ -221,6 +221,9 @@ vendor/kubectl-1.18:
vendor/kubectl-1.19:
- any: ["vendor/kubectl-1.19/**"]
all: ["!bin/**", "!tasks/**"]
+vendor/kubectl-1.20:
+- any: ["vendor/kubectl-1.20/**"]
+ all: ["!bin/**", "!tasks/**"]
vendor/kubectl:
- any: ["vendor/kubectl/**"]
all: ["!bin/**", "!tasks/**"]
@@ -344,6 +347,9 @@ vendor/terraform-0.13:
vendor/terraform-0.14:
- any: ["vendor/terraform-0.14/**"]
all: ["!bin/**", "!tasks/**"]
+vendor/terraform-0.15:
+- any: ["vendor/terraform-0.15/**"]
+ all: ["!bin/**", "!tasks/**"]
vendor/terraform-config-inspect:
- any: ["vendor/terraform-config-inspect/**"]
all: ["!bin/**", "!tasks/**"]
diff --git a/.github/workflows/auto-update-packages.yml b/.github/workflows/auto-update-packages.yml
index 3b1883e032..fcbba6b305 100644
--- a/.github/workflows/auto-update-packages.yml
+++ b/.github/workflows/auto-update-packages.yml
@@ -81,6 +81,7 @@ jobs:
- kubectl-1.17
- kubectl-1.18
- kubectl-1.19
+ - kubectl-1.20
- kubectx
- kubens
- kubeval
@@ -119,6 +120,7 @@ jobs:
- terraform-0.12
- terraform-0.13
- terraform-0.14
+ - terraform-0.15
- terraform-config-inspect
- terraform-docs
- terraform_0.11
diff --git a/.github/workflows/kubectl-1.20.yml b/.github/workflows/kubectl-1.20.yml
new file mode 100644
index 0000000000..64196a26f6
--- /dev/null
+++ b/.github/workflows/kubectl-1.20.yml
@@ -0,0 +1,220 @@
+#
+# This workflow was created automatically from the `package-template.yml` by running `make -C .github workflows`
+# DO NOT EDIT THIS WORKFLOW, changes will be lost on the next update.
+#
+
+name: "kubectl-1.20"
+on:
+ push:
+ branches:
+ - master
+
+ paths:
+ - apk/**
+ - deb/**
+ - rpm/**
+ - tasks/**
+ - vendor/kubectl-1.20/**
+ - .github/workflows/kubectl-1.20.yml
+
+
+ pull_request:
+ types: [opened, synchronize, reopened]
+ paths:
+ - apk/**
+ - deb/**
+ - rpm/**
+ - tasks/**
+ - vendor/kubectl-1.20/**
+ - .github/workflows/kubectl-1.20.yml
+
+jobs:
+ matrix:
+ if: github.event_name != 'schedule'
+ runs-on: ubuntu-latest
+ outputs:
+ package-enabled: ${{ steps.info.outputs.package_enabled }}
+ package-matrix: ${{steps.info.outputs.package_matrix}}
+ apk-enabled: ${{ steps.info.outputs.package_enabled == 'true' && steps.info.outputs.apk_package_enabled == 'true' }}
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Export package build matrix
+ shell: bash
+ id: info
+ env:
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+ run: |
+ echo setting ouputs
+ make -C vendor/kubectl-1.20 info/github
+ echo
+ echo outputs set
+ make -C vendor/kubectl-1.20 info/github | sed s'/::set-output name=//' | sed 's/::/=/'
+
+
+ # Build for alpine linux
+ # Kept separate because it is old and slightly different than the other package builds
+ alpine:
+ needs: matrix
+ if: github.event_name != 'schedule' && needs.matrix.outputs.apk-enabled != 'false'
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ # These versions must be strings. E.g. Otherwise `3.10` -> `3.1`
+ alpine:
+ - '3.12'
+ env:
+ APK_KEY_RSA: "${{ secrets.APK_KEY_RSA }}"
+ APK_PACKAGES_PATH: ${{github.workspace}}/artifacts/${{matrix.alpine}}
+ PACKAGER: ops@cloudposse.com
+ PACKAGER_PRIVKEY: /dev/shm/ops@cloudposse.com.rsa
+ PACKAGER_PUBKEY: ${{github.workspace}}/artifacts/ops@cloudposse.com.rsa.pub
+
+ container: cloudposse/packages-apkbuild:${{matrix.alpine}}
+ steps:
+ # Checkout the packages repo so we can build the packages as a monorepo
+ - name: "Checkout source code at current commit"
+ uses: actions/checkout@v2
+
+ # Export the apk keys as files from secrets
+ - name: "Export keys"
+ run: "make -C .github/ export"
+
+ # Build the alpine packages for the matrix version of alpine
+ - name: "Build alpine packages"
+ run: "make -C vendor/${{github.workflow}} apk"
+
+ # Verify the packages were built or error
+ - name: "List packages"
+ run: 'find ${APK_PACKAGES_PATH} -type f -name \*.apk | xargs --no-run-if-empty ls -l | grep .'
+
+ # Export the artifact filename including path
+ # Path must be relative to workdir for Cloudsmith action to be able to find it
+ - name: "Set output path to artifact"
+ id: artifact
+ shell: bash
+ run: |
+ artifact=$(find artifacts/${{matrix.alpine}} -type f -name \*.apk)
+ echo "::set-output name=path::$artifact"
+ echo "set output path=$artifact"
+ echo creating '"pip"' cache directory for Cloudsmith
+ mkdir -p $HOME/.cache/pip && chmod -R 777 $HOME/.cache || echo Ignoring error creating '"pip"' cache directory
+
+
+ # Determine which package organization we should use (e.g. dev or prod)
+ - name: "Determine package repo"
+ shell: bash
+ id: repo
+ run: |
+ if [[ ${GITHUB_REF} == 'refs/heads/master' ]]; then
+ echo "::set-output name=org::${{github.repository_owner}}"
+ else
+ echo "::set-output name=org::${{github.repository_owner}}-dev"
+ fi
+ env:
+ GITHUB_REF: ${{ github.ref }}
+
+ # Publish the artifacts
+ - name: "Push artifact to package repository"
+ uses: cloudsmith-io/action@v0.5.1
+ with:
+ api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
+ command: 'push'
+ format: 'alpine'
+ owner: '${{steps.repo.outputs.org}}' # Your Cloudsmith account name or org name (namespace)
+ repo: 'packages' # Your Cloudsmith Repository name (slug)
+ distro: 'alpine' # Your Distribution (i.e debian, ubuntu, alpine)
+ release: 'any-version' # Use "any-version" if your package is compatible with more than one version of alpine linux
+ republish: 'true' # Needed if version is not changing
+ file: '${{steps.artifact.outputs.path}}' # Package filename (including path)
+ no-wait-for-sync: 'true' # Skip the waiting for package synchronisation (i.e. upload only)
+
+ # Build packages with fpm package manager
+ package:
+ needs: matrix
+ # Should not be needed, but without these conditions, this job would fail with an error if the matrix is []
+ # and would run with package-type empty if matrix is ["apk"]
+ if: >
+ github.event_name != 'schedule' && needs.matrix.outputs.package-enabled != 'false'
+ && needs.matrix.outputs.package-matrix != '[]' && needs.matrix.outputs.package-matrix != '["apk"]'
+
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ package-type: ${{ fromJSON(needs.matrix.outputs.package-matrix) }}
+ exclude:
+ - package-type: 'apk'
+ env:
+ # We are in a bit of a bind here because of how GitHub actions work as of 2020-11-19
+ # Although the "workspace" is mounted to the container, it is not mounted
+ # at `/github/workspace` or ${{github.workspace}}, although through some
+ # mechanism, an environment variable whose value starts with ${{github.workspace}}
+ # will have ${{github.workspace}} replaced with the correct mount point.
+ #
+ # We need an absolute path for the package build system, since every build happens
+ # in a different directory, but because the mount point changes, we also
+ # need a path relative to the initial working directory to communicate between
+ # the package building container and the cloudsmith action.
+ PACKAGES_PATH: ${{github.workspace}}/artifacts/${{matrix.package-type}}/any-version
+ PACKAGE_RELPATH: artifacts/${{matrix.package-type}}/any-version
+
+ # Unfortunately, there is no reasonable way to configure the docker image tag based on the package-type
+ container: cloudposse/packages-${{matrix.package-type}}build:latest
+ steps:
+ # Checkout the packages repo so we can build the packages as a monorepo
+ - name: "Checkout source code at current commit"
+ uses: actions/checkout@v2
+
+ # Build the packages for the matrix version
+ - name: "Build ${{matrix.package-type}} packages"
+ shell: bash
+ run: |
+ echo Current directory is $(pwd)
+ [[ $PACKAGES_PATH =~ ^$(pwd) ]] || { echo Package dir \"$PACKAGES_PATH\" not beneath workdir \"$(pwd)\" >&2; exit 1; }
+ make -C vendor/${{github.workflow}} ${{matrix.package-type}}
+
+ # Export the artifact filename including path
+ - name: "Set output path to artifact"
+ id: artifact
+ shell: bash
+ run: |
+ [[ -n $PACKAGE_RELPATH ]] || { echo Error: PACKAGE_RELPATH is not set >&2; exit 1; }
+ packages=($(find ${PACKAGE_RELPATH} -type f -name \*.${{matrix.package-type}}))
+ echo List packages found:
+ printf "%s\n" "${packages[@]}" | xargs --no-run-if-empty ls -l
+ echo Error if not exactly 1 package found
+ (( ${#packages[@]} == 1 )) || { echo "Error: other than 1 package found (${#packages[@]})" >&2; exit 1; }
+
+ echo "setting output name=path::$packages"
+ echo "::set-output name=path::$packages"
+
+ echo creating '"pip"' cache directory for Cloudsmith
+ mkdir -p $HOME/.cache/pip && chmod -R 777 $HOME/.cache || echo Ignoring error creating '"pip"' cache directory
+
+ # Determine which package organization we should use (e.g. dev or prod)
+ - name: "Determine package repo"
+ shell: bash
+ id: repo
+ run: |
+ if [[ ${GITHUB_REF} == 'refs/heads/master' ]]; then
+ echo "::set-output name=org::${{github.repository_owner}}"
+ else
+ echo "::set-output name=org::${{github.repository_owner}}-dev"
+ fi
+ env:
+ GITHUB_REF: ${{ github.ref }}
+
+ # Publish the artifacts
+ - name: "Push artifact to package repository"
+ uses: cloudsmith-io/action@v0.5.1
+ with:
+ api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
+ command: 'push'
+ format: '${{matrix.package-type}}'
+ owner: '${{steps.repo.outputs.org}}' # Your Cloudsmith account name or org name (namespace)
+ repo: 'packages' # Your Cloudsmith Repository name (slug)
+ distro: 'any-distro' # Use "any-distro" since our package is compatible with more than more distribution
+ release: 'any-version' # Use "any-version" since our package is compatible with more than more version
+ republish: 'true' # Needed if version is not changing
+ file: '${{steps.artifact.outputs.path}}' # Package filename (including path)
+ no-wait-for-sync: 'true' # Skip the waiting for package synchronisation (i.e. upload only)
diff --git a/.github/workflows/terraform-0.15.yml b/.github/workflows/terraform-0.15.yml
new file mode 100644
index 0000000000..22c6a1cacc
--- /dev/null
+++ b/.github/workflows/terraform-0.15.yml
@@ -0,0 +1,220 @@
+#
+# This workflow was created automatically from the `package-template.yml` by running `make -C .github workflows`
+# DO NOT EDIT THIS WORKFLOW, changes will be lost on the next update.
+#
+
+name: "terraform-0.15"
+on:
+ push:
+ branches:
+ - master
+
+ paths:
+ - apk/**
+ - deb/**
+ - rpm/**
+ - tasks/**
+ - vendor/terraform-0.15/**
+ - .github/workflows/terraform-0.15.yml
+
+
+ pull_request:
+ types: [opened, synchronize, reopened]
+ paths:
+ - apk/**
+ - deb/**
+ - rpm/**
+ - tasks/**
+ - vendor/terraform-0.15/**
+ - .github/workflows/terraform-0.15.yml
+
+jobs:
+ matrix:
+ if: github.event_name != 'schedule'
+ runs-on: ubuntu-latest
+ outputs:
+ package-enabled: ${{ steps.info.outputs.package_enabled }}
+ package-matrix: ${{steps.info.outputs.package_matrix}}
+ apk-enabled: ${{ steps.info.outputs.package_enabled == 'true' && steps.info.outputs.apk_package_enabled == 'true' }}
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Export package build matrix
+ shell: bash
+ id: info
+ env:
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+ run: |
+ echo setting ouputs
+ make -C vendor/terraform-0.15 info/github
+ echo
+ echo outputs set
+ make -C vendor/terraform-0.15 info/github | sed s'/::set-output name=//' | sed 's/::/=/'
+
+
+ # Build for alpine linux
+ # Kept separate because it is old and slightly different than the other package builds
+ alpine:
+ needs: matrix
+ if: github.event_name != 'schedule' && needs.matrix.outputs.apk-enabled != 'false'
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ # These versions must be strings. E.g. Otherwise `3.10` -> `3.1`
+ alpine:
+ - '3.12'
+ env:
+ APK_KEY_RSA: "${{ secrets.APK_KEY_RSA }}"
+ APK_PACKAGES_PATH: ${{github.workspace}}/artifacts/${{matrix.alpine}}
+ PACKAGER: ops@cloudposse.com
+ PACKAGER_PRIVKEY: /dev/shm/ops@cloudposse.com.rsa
+ PACKAGER_PUBKEY: ${{github.workspace}}/artifacts/ops@cloudposse.com.rsa.pub
+
+ container: cloudposse/packages-apkbuild:${{matrix.alpine}}
+ steps:
+ # Checkout the packages repo so we can build the packages as a monorepo
+ - name: "Checkout source code at current commit"
+ uses: actions/checkout@v2
+
+ # Export the apk keys as files from secrets
+ - name: "Export keys"
+ run: "make -C .github/ export"
+
+ # Build the alpine packages for the matrix version of alpine
+ - name: "Build alpine packages"
+ run: "make -C vendor/${{github.workflow}} apk"
+
+ # Verify the packages were built or error
+ - name: "List packages"
+ run: 'find ${APK_PACKAGES_PATH} -type f -name \*.apk | xargs --no-run-if-empty ls -l | grep .'
+
+ # Export the artifact filename including path
+ # Path must be relative to workdir for Cloudsmith action to be able to find it
+ - name: "Set output path to artifact"
+ id: artifact
+ shell: bash
+ run: |
+ artifact=$(find artifacts/${{matrix.alpine}} -type f -name \*.apk)
+ echo "::set-output name=path::$artifact"
+ echo "set output path=$artifact"
+ echo creating '"pip"' cache directory for Cloudsmith
+ mkdir -p $HOME/.cache/pip && chmod -R 777 $HOME/.cache || echo Ignoring error creating '"pip"' cache directory
+
+
+ # Determine which package organization we should use (e.g. dev or prod)
+ - name: "Determine package repo"
+ shell: bash
+ id: repo
+ run: |
+ if [[ ${GITHUB_REF} == 'refs/heads/master' ]]; then
+ echo "::set-output name=org::${{github.repository_owner}}"
+ else
+ echo "::set-output name=org::${{github.repository_owner}}-dev"
+ fi
+ env:
+ GITHUB_REF: ${{ github.ref }}
+
+ # Publish the artifacts
+ - name: "Push artifact to package repository"
+ uses: cloudsmith-io/action@v0.5.1
+ with:
+ api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
+ command: 'push'
+ format: 'alpine'
+ owner: '${{steps.repo.outputs.org}}' # Your Cloudsmith account name or org name (namespace)
+ repo: 'packages' # Your Cloudsmith Repository name (slug)
+ distro: 'alpine' # Your Distribution (i.e debian, ubuntu, alpine)
+ release: 'any-version' # Use "any-version" if your package is compatible with more than one version of alpine linux
+ republish: 'true' # Needed if version is not changing
+ file: '${{steps.artifact.outputs.path}}' # Package filename (including path)
+ no-wait-for-sync: 'true' # Skip the waiting for package synchronisation (i.e. upload only)
+
+ # Build packages with fpm package manager
+ package:
+ needs: matrix
+ # Should not be needed, but without these conditions, this job would fail with an error if the matrix is []
+ # and would run with package-type empty if matrix is ["apk"]
+ if: >
+ github.event_name != 'schedule' && needs.matrix.outputs.package-enabled != 'false'
+ && needs.matrix.outputs.package-matrix != '[]' && needs.matrix.outputs.package-matrix != '["apk"]'
+
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ package-type: ${{ fromJSON(needs.matrix.outputs.package-matrix) }}
+ exclude:
+ - package-type: 'apk'
+ env:
+ # We are in a bit of a bind here because of how GitHub actions work as of 2020-11-19
+ # Although the "workspace" is mounted to the container, it is not mounted
+ # at `/github/workspace` or ${{github.workspace}}, although through some
+ # mechanism, an environment variable whose value starts with ${{github.workspace}}
+ # will have ${{github.workspace}} replaced with the correct mount point.
+ #
+ # We need an absolute path for the package build system, since every build happens
+ # in a different directory, but because the mount point changes, we also
+ # need a path relative to the initial working directory to communicate between
+ # the package building container and the cloudsmith action.
+ PACKAGES_PATH: ${{github.workspace}}/artifacts/${{matrix.package-type}}/any-version
+ PACKAGE_RELPATH: artifacts/${{matrix.package-type}}/any-version
+
+ # Unfortunately, there is no reasonable way to configure the docker image tag based on the package-type
+ container: cloudposse/packages-${{matrix.package-type}}build:latest
+ steps:
+ # Checkout the packages repo so we can build the packages as a monorepo
+ - name: "Checkout source code at current commit"
+ uses: actions/checkout@v2
+
+ # Build the packages for the matrix version
+ - name: "Build ${{matrix.package-type}} packages"
+ shell: bash
+ run: |
+ echo Current directory is $(pwd)
+ [[ $PACKAGES_PATH =~ ^$(pwd) ]] || { echo Package dir \"$PACKAGES_PATH\" not beneath workdir \"$(pwd)\" >&2; exit 1; }
+ make -C vendor/${{github.workflow}} ${{matrix.package-type}}
+
+ # Export the artifact filename including path
+ - name: "Set output path to artifact"
+ id: artifact
+ shell: bash
+ run: |
+ [[ -n $PACKAGE_RELPATH ]] || { echo Error: PACKAGE_RELPATH is not set >&2; exit 1; }
+ packages=($(find ${PACKAGE_RELPATH} -type f -name \*.${{matrix.package-type}}))
+ echo List packages found:
+ printf "%s\n" "${packages[@]}" | xargs --no-run-if-empty ls -l
+ echo Error if not exactly 1 package found
+ (( ${#packages[@]} == 1 )) || { echo "Error: other than 1 package found (${#packages[@]})" >&2; exit 1; }
+
+ echo "setting output name=path::$packages"
+ echo "::set-output name=path::$packages"
+
+ echo creating '"pip"' cache directory for Cloudsmith
+ mkdir -p $HOME/.cache/pip && chmod -R 777 $HOME/.cache || echo Ignoring error creating '"pip"' cache directory
+
+ # Determine which package organization we should use (e.g. dev or prod)
+ - name: "Determine package repo"
+ shell: bash
+ id: repo
+ run: |
+ if [[ ${GITHUB_REF} == 'refs/heads/master' ]]; then
+ echo "::set-output name=org::${{github.repository_owner}}"
+ else
+ echo "::set-output name=org::${{github.repository_owner}}-dev"
+ fi
+ env:
+ GITHUB_REF: ${{ github.ref }}
+
+ # Publish the artifacts
+ - name: "Push artifact to package repository"
+ uses: cloudsmith-io/action@v0.5.1
+ with:
+ api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
+ command: 'push'
+ format: '${{matrix.package-type}}'
+ owner: '${{steps.repo.outputs.org}}' # Your Cloudsmith account name or org name (namespace)
+ repo: 'packages' # Your Cloudsmith Repository name (slug)
+ distro: 'any-distro' # Use "any-distro" since our package is compatible with more than more distribution
+ release: 'any-version' # Use "any-version" since our package is compatible with more than more version
+ republish: 'true' # Needed if version is not changing
+ file: '${{steps.artifact.outputs.path}}' # Package filename (including path)
+ no-wait-for-sync: 'true' # Skip the waiting for package synchronisation (i.e. upload only)
diff --git a/README.md b/README.md
index 1a2a7a2ec3..e69de29bb2 100644
--- a/README.md
+++ b/README.md
@@ -1,605 +0,0 @@
-
-# Packages [](https://github.com/cloudposse/packages/actions?query=workflow%3Aauto-update) [](https://github.com/cloudposse/packages/releases/latest) [](https://slack.cloudposse.com)
-
-
-[![README Header][readme_header_img]][readme_header_link]
-
-[![Cloud Posse][logo]](https://cpco.io/homepage)
-
-
-
-Cloud Posse distribution of awesome apps.
-
-
----
-
-This project is part of our comprehensive ["SweetOps"](https://cpco.io/sweetops) approach towards DevOps.
-[
][share_email]
-[
][share_googleplus]
-[
][share_facebook]
-[
][share_reddit]
-[
][share_linkedin]
-[
][share_twitter]
-
-
-
-
-It's 100% Open Source and licensed under the [APACHE2](LICENSE).
-
-
-
-
-
-
-
-
-
-
-
-
-## Introduction
-
-
-Use this repo to easily install releases of popular Open Source apps. We provide a few ways to use it.
-
-1. **Make Based Installer.** This installer works regardless of your OS and distribution. It downloads packages directly from their GitHub source repos and installs them to your `INSTALL_PATH`.
-2. **Alpine Linux Packages.** Use our Alpine repository to install prebuilt packages that use the original source binary (where possible) from the maintainers' official GitHub repo releases.
-3. **Docker Image.** Use our docker image as a base-image or as part of a multi-stage docker build. The docker image always distributes the latest linux binaries for `x86_64` architectures.
-
-See examples below for usage.
-
-**Is one of our packages out of date?**
-
-Open up an [issue](https://github.com/cloudposse/packages/issues) or submit a PR (*preferred*). We'll review quickly!
-
-## Sponsorship [
](https://cloudsmith.io/)
-
-Package repository hosting is graciously provided by [cloudsmith](https://cloudsmith.io/). Cloudsmith is the only fully hosted, cloud-native, universal package management solution, that enables your organization to create, store and share packages in any format, to any place, with total confidence. We believe there’s a better way to manage software assets and packages, and they’re making it happen!
-
-
-
-
-## Usage
-
-
-
-
-### Alpine Repository (recommended)
-
-A public Alpine repository is provided by [Cloud Posse](https://cloudposse.com). The repository is hosted on Amazon S3 and fronted by [CloudFlare's CDN](http://cloudflare.com) with end-to-end TLS. This ensures insane availability with DDoS mitigation and low-cost hosting. Using this alpine repository is ultimately more reliable than depending on [GitHub for availability](https://twitter.com/githubstatus) and provides an easier way to manage dependencies pinned at multiple versions.
-
-The repository itself is managed using [`alpinist`](https://github.com/cloudposse/alpinist), which takes care of the heavy lifting of building repository indexes. You can self-host your own Alpine repository using this strategy.
-
-### Configure the alpine repository:
-
-#### The Easy Way
-
-We provide a bootstrap script to configure the alpine repository for your version of alpine.
-
-```
-curl -sSL https://apk.cloudposse.com/install.sh | bash
-```
-__NOTE__: Requires `bash` and `curl` to run:
-
-#### For Docker
-
-Add the following to your `Dockerfile` near the top.
-```
-# Install the cloudposse alpine repository
-ADD https://apk.cloudposse.com/ops@cloudposse.com.rsa.pub /etc/apk/keys/
-RUN echo "@cloudposse https://apk.cloudposse.com/3.11/vendor" >> /etc/apk/repositories
-```
-__NOTE__: we support alpine `3.7`, `3.8`, `3.9`, `3.10`, and `3.11` packages at this time
-
-### Installing Alpine Packages
-
-When adding packages, we recommend using `apk add --update $package` to update the repository index before installing packages.
-
-Simply install any package as normal:
-```
-apk add gomplate
-```
-
-But we recommend that you use version pinning:
-```
-apk add gomplate==3.0.0-r0
-```
-
-And maybe even repository pinning, so you know that you get our versions:
-```
-apk add gomplate@cloudposse==3.0.0-r0
-```
-
-### Makefile Interface
-
-The `Makefile` interface works on OSX and Linux. It's a great way to distribute binaries in an OS-agnostic way which does not depend on a package manager (e.g. no `brew` or `apt-get`).
-
-This method is ideal for [local development environments](https://docs.cloudposse.com/local-dev-environments/) (which is how we use it) where you need the dependencies installed natively for your OS/architecture, such as installing a package on OSX.
-
-See all available packages:
-```
-make -C install help
-```
-
-Install everything...
-```
-make -C install all
-```
-
-Install specific packages:
-```
-make -C install aws-vault chamber
-```
-
-Install to a specific folder:
-```
-make -C install aws-vault INSTALL_PATH=/usr/bin
-```
-
-Uninstall a specific package
-```
-make -C uninstall yq
-```
-
-### Rebuilding GitHub Action Workflows
-
-The GitHub Action workflows are compiled from the `.github/package-template.yml` file by running `make -C .github workflows`. It's also run automatically when rebuilding the `README.md` with `make readme`.
-
-Run this make target anytime the `package-template.yml` changes or any new packages are added to the `vendor/` folder.
-
-__IMPORTANT__: The `package-template.yml` supports a single macro for interpolation `%PACKAGE_NAME%` which is replaced using a `sed` expression.
-Since the workflow uses a combation of gotemplate-like interpolations as well as inlines shell scripts, we used the `%VAR%` form of interpolation to avoid
-the need for endless escaping of interpolation specifiers.
-
-### Testing Locally
-
-#### Alpine
-
-```sh
-$ make docker/build/apk/shell
-$ make -C vendor/ apk
-```
-
-#### Debian
-
-```sh
-$ make docker/build/deb/shell
-$ make -C vendor/ deb
-```
-
-### Mac
-
-```sh
-$ make -C vendor/ install
-```
-
-
-
-
-## Examples
-
-### Docker Multi-stage Build
-
-Add this to a `Dockerfile` to install packages using a multi-stage build process:
-```
-FROM cloudposse/packages:latest AS packages
-
-COPY --from=packages /packages/bin/kubectl /usr/local/bin/
-```
-
-### Docker with Git Clone
-
-Or... add this to a `Dockerfile` to easily install packages on-demand:
-```
-RUN git clone --depth=1 -b master https://github.com/cloudposse/packages.git /packages && \
- rm -rf /packages/.git && \
- make -C /packages/install kubectl
-```
-
-### Makefile Inclusion
-
-Sometimes it's necessary to install some binary dependencies when building projects. For example, we frequently
-rely on `gomplate` or `helm` to build chart packages.
-
-Here's a stub you can include into a `Makefile` to make it easier to install binary dependencies.
-
-```
-export PACKAGES_VERSION ?= master
-export PACKAGES_PATH ?= packages/
-export INSTALL_PATH ?= $(PACKAGES_PATH)/bin
-
-## Install packages
-packages/install:
- @if [ ! -d $(PACKAGES_PATH) ]; then \
- echo "Installing packages $(PACKAGES_VERSION)..."; \
- rm -rf $(PACKAGES_PATH); \
- git clone --depth=1 -b $(PACKAGES_VERSION) https://github.com/cloudposse/packages.git $(PACKAGES_PATH); \
- rm -rf $(PACKAGES_PATH)/.git; \
- fi
-
-## Install package (e.g. helm, helmfile, kubectl)
-packages/install/%: packages/install
- @make -C $(PACKAGES_PATH)/install $(subst packages/install/,,$@)
-
-## Uninstall package (e.g. helm, helmfile, kubectl)
-packages/uninstall/%:
- @make -C $(PACKAGES_PATH)/uninstall $(subst packages/uninstall/,,$@)
-```
-
-### Contributing Additional Packages
-In addition to following the Contributing section, the following steps can be used to add new packages for review (via a PR).
-If possible (and it usually is), you want to find an existing package with similarly packaged release (`.tar`, `.gz`, uncompressed binary, etc.),
-and copy and edit its Makefile.
-1. Copy the Makefile from an existing, similar, package within the vendors directory. Name the new folder with the same name as the binary package being installed.
-2. Edit the Makefile, ensuring the `DOWNLOAD_URL` is properly formatted
-3. Run `make init` from within the directory to create the `DESCRIPTION`, `LICENSE`, `RELEASE`, and `VERSION` files.
-4. Ensure that a test task exists in the package Makefile. It should check the version number of the installed binary if possible.
-5. Test the install and ensure that it downloads and runs as expected (`make -C install INSTALL_PATH=/tmp`)
-6. Test the apk build (see below)
-7. Update the `README.md` (`make init readme/deps readme`)
-
-### Testing apk builds
-
-To validate that a new package will build into an apk you can use the following steps;
-
-```bash
-make docker/build/apk/shell
-make -C vendor/ apk
-# Some temp build files in the volume mount set user/group to nobody/nobody for apk building.
-# It is easier to remove them while within the docker container.
-rm -rf ./tmp/build.*
-exit
-```
-
-### Troubleshooting Package Addition
-Here are some solutions to several common problems that may occur when adding a new package:
-
-1. When adding a new app, the `make -C vendor/ apk` command fails, claiming it can't find the app's binary file, even though it is in the expected place.
-
- Part of the `make -C vendor/ apk` command is building a package for the binary file inside an Alpine Linux container. Since Alpine Linux uses `musl` as its C library, this often leads to situations where binaries built against `libc` might not function on Alpine. What's more, binaries from projects written in `Go` will not be found by the Alpine package builder at all if they are missing any necessary libraries, like `libc`. The solution to this problem is to add an `export APKBUILD_DEPENDS += libc6-compat` line to the top of your new package's associated `Makefile`.
-
-2. When adding a new binary, the `make builder TARGETS=readme` command fails with `Unable to find image 'cloudposse/build-harness:sha-[some_SHA_stub]' locally`.
-
- This can occur when you have the `cloudposse/build-harness` repository checked out somewhere on your machine. `make builder TARGETS=readme` will end up looking for a docker image tagged with the SHA that the `HEAD` ref of your `buld-harness` points to. To correct this behavior, just run `make init` in the `cloudposse/packages` directory prior to running `make builder TARGETS=readme`.
-
-
-
-
-## Package Build Status
-| Build Status | Version | Description |
-| ------------ | ------- | ----------- |
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aamtool) | 0.21.0 | Tool for interacting with the Alertmanager API
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aargocd) | 1.8.5 | Declarative GitOpts for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aassume-role) | 0.3.2 | Easily assume AWS roles in your terminal.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.16.1 | Terraform For Teams
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aatmos) | 0.17.0 | Universal Tool for DevOps and Cloud Automation
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aawless) | 0.1.11 | A Mighty CLI for AWS
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-iam-authenticator) | 0.5.2 | A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-vault) | 6.2.0 | A vault for securely storing and accessing AWS credentials in development environments
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acfssl) | 1.5.0 | Cloudflare's PKI and TLS toolkit
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acfssljson) | 1.5.0 | Cloudflare's PKI and TLS toolkit json parser
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Achamber) | 2.9.1 | CLI for managing secrets
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acli53) | 0.8.18 | Command line tool for Amazon Route 53
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acloudflared) | 2021.2.5 | Argo Tunnel client
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acloudposse-atlantis) | 0.9.0.3 | Terraform For Teams, enhanced by Cloud Posse
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acodefresh) | 0.75.6 | Codefresh CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aconftest) | 0.23.0 | Test your configuration files using Open Policy Agent
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aconsul) | 1.9.3 | Hashicorp consul
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Actop) | 0.7.5 | Top-like interface for container metrics
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Adirenv) | 2.27.0 | Unclutter your .profile
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Adoctl) | 1.57.0 | A command line tool for DigitalOcean services
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aduffle) | 0.3.5b1 | CNAB installer
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aemailcli) | 1.0.3 | Command line email sending client written in Go.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afargate) | 0.3.2 | CLI for AWS Fargate
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afetch) | 0.4.1 | fetch makes it easy to download files, folders, and release assets from a specific public git commit, branch, or tag
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afigurine) | 1.0.1 | Print your name in style
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afzf) | 0.23.1 | A command-line fuzzy finder
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agh) | 1.6.2 | The GitHub CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aghr) | 0.13.0 | Upload multiple artifacts to GitHub Releases in parallel
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-commenter) | 0.8.0 | Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-release) | 0.10.0 | Commandline app to create and edit releases on Github (and upload artifacts)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-status-updater) | 0.5.0 | Command line utility for updating GitHub commit statuses and enabling required status checks for pull requests
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agitleaks) | 1.2.0 | Audit git repos for secrets 🔑
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ago-jsonnet) | 0.17.0 | This an implementation of Jsonnet in pure Go.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agomplate) | 3.9.0 | A flexible commandline tool for template rendering. Supports lots of local and remote datasources.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agonsul) | 0.2.1 | A stand-alone alternative to git2consul
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agoofys) | 0.24.0 | a high-performance, POSIX-ish Amazon S3 file system written in Go
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agosu) | 1.12.0 | Simple Go-based setuid+setgid+setgroups+exec
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agotop) | 3.0.0 | A terminal based graphical activity monitor inspired by gtop and vtop
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agrpcurl) | 1.8.0 | Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm) | 3.5.2 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm2) | 2.17.0 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm3) | 3.5.2 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelmfile) | 0.138.4 | Deploy Kubernetes Helm Charts
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahtmltest) | 0.14.0 | :white_check_mark: Test generated HTML for problems
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahugo) | 0.81.0 | The world’s fastest framework for building websites.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajp) | 0.1.3 | Command line interface to JMESPath
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajq) | 1.6.0 | Command-line JSON processor
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajson2hcl) | 0.0.6 | Convert JSON to HCL, and vice versa
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajx) | 2.1.155 | Jenkins-X
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak3d) | 4.2.0 | Little helper to run Rancher Lab's k3s in Docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak6) | 0.30.0 | A modern load testing tool, using Go and JavaScript - https://k6.io
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak9s) | 0.24.2 | Kubernetes CLI To Manage Your Clusters In Style
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akatafygio) | 0.8.3 | K8s continuous backup to git
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akfctl) | 1.2.0 | Machine Learning Toolkit for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akind) | 0.10.0 | A tool for running local Kubernetes clusters using Docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akops) | 1.19.1 | Kubernetes Operations (kops) - Production Grade K8s Installation, Upgrades, and Management
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akrew) | 0.4.1 | Kubectl plugin manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubecron) | 2.0.0 | Utilities to manage kubernetes cronjobs. Run a CronJob manually for test purposes. Suspend/unsuspend a CronJob
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl) | 1.20.4 | Production-Grade Container Scheduling and Management
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.13) | 1.13.12 | Production-Grade Container Scheduling and Management (v1.13)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.14) | 1.14.10 | Production-Grade Container Scheduling and Management (v1.14)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.15) | 1.15.12 | Production-Grade Container Scheduling and Management (v1.15)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.16) | 1.16.15 | Production-Grade Container Scheduling and Management (v1.16)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.17) | 1.17.17 | Production-Grade Container Scheduling and Management (v1.17)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.18) | 1.18.16 | Production-Grade Container Scheduling and Management (v1.18)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.19) | 1.19.8 | Production-Grade Container Scheduling and Management (v1.19)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectx) | 0.9.2 | Switch faster between clusters and namespaces in kubectl
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubens) | 0.9.1 | Switch faster between clusters and namespaces in kubectl
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubeval) | 0.15.0 | Validate your Kubernetes configuration files, supports multiple Kubernetes versions
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Alazydocker) | 0.10.0 | The lazier way to manage everything docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Alectl) | 0.21.0 | Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aminikube) | 1.17.1 | Run Kubernetes locally
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Amisspell) | 0.3.4 | Correct commonly misspelled English words in source files
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aopa) | 0.26.0 | An open source project to policy-enable your service.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apack) | 0.17.0 | Create cloud native Buildpacks
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apacker) | 1.7.0 | Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apandoc) | 2.11.4 | Universal markup converter
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apgmetrics) | 1.10.5 | Postgres metrics
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apluto) | 4.0.4 | A cli tool to help discover deprecated apiVersions in Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apopeye) | 0.9.0 | A Kubernetes cluster resource sanitizer
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apromtool) | 2.25.0 | Prometheus CLI tool
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arakkess) | 0.4.7 | Review Access - kubectl plugin to show an access matrix for all available resources
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arancher) | 2.4.10 | Rancher CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arbac-lookup) | 0.6.3 | Find Kubernetes roles and cluster roles bound to any user, service account, or group name.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asaml2aws) | 2.28.2 | CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ascenery) | 0.1.5 | A Terraform plan output prettifier
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asentry-cli) | 1.62.0 | A command line utility to work with Sentry.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ashellcheck) | 0.7.1 | ShellCheck, a static analysis tool for shell scripts
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ashfmt) | 3.2.2 | A shell parser, formatter and interpreter (POSIX/Bash/mksh)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aslack-notifier) | 0.3.0 | Command line utility to send messages with attachments to Slack channels via Incoming Webhooks
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asops) | 3.6.1 | Secrets management stinks, use some sops!
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aspotctl) | 0.0.18 | A unified CLI to manage your [Spot](https://spot.io/) resources.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Astern) | 1.11.0 | ⎈ Multi pod and container log tailing for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asudosh) | 0.3.0 | Shell wrapper to run a login shell with `sudo` as the current user for the purpose of audit logging
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport) | 5.1.2 | Secure Access for Developers that doesn't get in the way.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.2) | 4.2.12 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.3) | 4.3.9 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.4) | 4.4.7 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-5.0) | 5.0.2 | Secure Access for Developers that doesn't get in the way.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform) | 0.14.7 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.11) | 0.11.14 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.12) | 0.12.30 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.13) | 0.13.6 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.14) | 0.14.7 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-config-inspect) | 0.0.20210209133302+git4fd17a0faac2 | A helper library for shallow inspection of Terraform configurations
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-docs) | 0.11.2 | Generate docs from terraform modules
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.11) | 0.11.14 | Terraform (Deprecated package. Use terraform-0.11 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.12) | 0.12.30 | Terraform (Deprecated package. Use terraform-0.12 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.13) | 0.13.6 | Terraform (Deprecated package. Use terraform-0.13 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterragrunt) | 0.28.7 | Terragrunt is a thin wrapper for Terraform that provides extra tools for working with multiple Terraform modules.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterrahelp) | 0.7.4 | Terrahelp is as a command line utility that provides useful tricks like masking of terraform output.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atfenv) | 0.4.0 | Transform environment variables for use with Terraform (e.g. `HOSTNAME` ⇨ `TF_VAR_hostname`)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atfmask) | 0.7.0 | Terraform utility to mask select output from `terraform plan` and `terraform apply`
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Athanos) | 0.18.0 | Highly available Prometheus setup with long term storage capabilities. CNCF Sandbox project.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atrivy) | 0.16.0 | A Simple and Comprehensive Vulnerability Scanner for Containers, Suitable for CI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aturf) | 0.11.0 | Turf is Cloud Posse's command-line automation helper.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avariant) | 0.37.0 | Variant is a Universal CLI tool that works like a task runner
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avariant2) | 0.37.1 | Second major version of Variant, a Universal CLI tool that works like a task runner
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avault) | 1.6.2 | Hashicorp vault
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avendir) | 0.16.0 | Easy way to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avenona) | 0.32.2 | Codefresh runtime-environment agent
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avert) | 0.1.0 | Simple CLI for comparing two or more versions
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ayajsv) | 1.4.0 | Yet Another JSON Schema Validator [CLI]
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ayq) | 4.6.0 | yq is a portable command-line YAML processor
-
-
-
-## Share the Love
-
-Like this project? Please give it a ★ on [our GitHub](https://github.com/cloudposse/packages)! (it helps us **a lot**)
-
-Are you using this project or any of our other projects? Consider [leaving a testimonial][testimonial]. =)
-
-
-## Related Projects
-
-Check out these related projects.
-
-- [build-harness](https://github.com/cloudposse/build-harness) - Collection of Makefiles to facilitate building Golang projects, Dockerfiles, Helm charts, and more
-- [geodesic](https://github.com/cloudposse/geodesic) - Geodesic is the fastest way to get up and running with a rock solid, production grade cloud platform built on strictly Open Source tools.
-
-
-
-## Help
-
-**Got a question?** We got answers.
-
-File a GitHub [issue](https://github.com/cloudposse/packages/issues), send us an [email][email] or join our [Slack Community][slack].
-
-[![README Commercial Support][readme_commercial_support_img]][readme_commercial_support_link]
-
-## DevOps Accelerator for Startups
-
-
-We are a [**DevOps Accelerator**][commercial_support]. We'll help you build your cloud infrastructure from the ground up so you can own it. Then we'll show you how to operate it and stick around for as long as you need us.
-
-[][commercial_support]
-
-Work directly with our team of DevOps experts via email, slack, and video conferencing.
-
-We deliver 10x the value for a fraction of the cost of a full-time engineer. Our track record is not even funny. If you want things done right and you need it done FAST, then we're your best bet.
-
-- **Reference Architecture.** You'll get everything you need from the ground up built using 100% infrastructure as code.
-- **Release Engineering.** You'll have end-to-end CI/CD with unlimited staging environments.
-- **Site Reliability Engineering.** You'll have total visibility into your apps and microservices.
-- **Security Baseline.** You'll have built-in governance with accountability and audit logs for all changes.
-- **GitOps.** You'll be able to operate your infrastructure via Pull Requests.
-- **Training.** You'll receive hands-on training so your team can operate what we build.
-- **Questions.** You'll have a direct line of communication between our teams via a Shared Slack channel.
-- **Troubleshooting.** You'll get help to triage when things aren't working.
-- **Code Reviews.** You'll receive constructive feedback on Pull Requests.
-- **Bug Fixes.** We'll rapidly work with you to fix any bugs in our projects.
-
-## Slack Community
-
-Join our [Open Source Community][slack] on Slack. It's **FREE** for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally *sweet* infrastructure.
-
-## Discourse Forums
-
-Participate in our [Discourse Forums][discourse]. Here you'll find answers to commonly asked questions. Most questions will be related to the enormous number of projects we support on our GitHub. Come here to collaborate on answers, find solutions, and get ideas about the products and services we value. It only takes a minute to get started! Just sign in with SSO using your GitHub account.
-
-## Newsletter
-
-Sign up for [our newsletter][newsletter] that covers everything on our technology radar. Receive updates on what we're up to on GitHub as well as awesome new projects we discover.
-
-## Office Hours
-
-[Join us every Wednesday via Zoom][office_hours] for our weekly "Lunch & Learn" sessions. It's **FREE** for everyone!
-
-[][office_hours]
-
-## Contributing
-
-### Bug Reports & Feature Requests
-
-Please use the [issue tracker](https://github.com/cloudposse/packages/issues) to report any bugs or file feature requests.
-
-### Developing
-
-If you are interested in being a contributor and want to get involved in developing this project or [help out](https://cpco.io/help-out) with our other projects, we would love to hear from you! Shoot us an [email][email].
-
-In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
-
- 1. **Fork** the repo on GitHub
- 2. **Clone** the project to your own machine
- 3. **Commit** changes to your own branch
- 4. **Push** your work back up to your fork
- 5. Submit a **Pull Request** so that we can review your changes
-
-**NOTE:** Be sure to merge the latest changes from "upstream" before making a pull request!
-
-
-## Copyright
-
-Copyright © 2017-2021 [Cloud Posse, LLC](https://cpco.io/copyright)
-
-
-
-## License
-
-[](https://opensource.org/licenses/Apache-2.0)
-
-See [LICENSE](LICENSE) for full details.
-
-```text
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
-```
-
-
-
-
-
-
-
-
-
-## Trademarks
-
-All other trademarks referenced herein are the property of their respective owners.
-
-## About
-
-This project is maintained and funded by [Cloud Posse, LLC][website]. Like it? Please let us know by [leaving a testimonial][testimonial]!
-
-[![Cloud Posse][logo]][website]
-
-We're a [DevOps Professional Services][hire] company based in Los Angeles, CA. We ❤️ [Open Source Software][we_love_open_source].
-
-We offer [paid support][commercial_support] on all of our projects.
-
-Check out [our other projects][github], [follow us on twitter][twitter], [apply for a job][jobs], or [hire us][hire] to help with your cloud strategy and implementation.
-
-
-
-### Contributors
-
-
-| [![Erik Osterman][osterman_avatar]][osterman_homepage]
[Erik Osterman][osterman_homepage] | [![Igor Rodionov][goruha_avatar]][goruha_homepage]
[Igor Rodionov][goruha_homepage] | [![Andriy Knysh][aknysh_avatar]][aknysh_homepage]
[Andriy Knysh][aknysh_homepage] |
-|---|---|---|
-
-
- [osterman_homepage]: https://github.com/osterman
- [osterman_avatar]: https://img.cloudposse.com/150x150/https://github.com/osterman.png
- [goruha_homepage]: https://github.com/goruha
- [goruha_avatar]: https://img.cloudposse.com/150x150/https://github.com/goruha.png
- [aknysh_homepage]: https://github.com/aknysh
- [aknysh_avatar]: https://img.cloudposse.com/150x150/https://github.com/aknysh.png
-
-[![README Footer][readme_footer_img]][readme_footer_link]
-[![Beacon][beacon]][website]
-
- [logo]: https://cloudposse.com/logo-300x69.svg
- [docs]: https://cpco.io/docs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=docs
- [website]: https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=website
- [github]: https://cpco.io/github?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=github
- [jobs]: https://cpco.io/jobs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=jobs
- [hire]: https://cpco.io/hire?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=hire
- [slack]: https://cpco.io/slack?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=slack
- [linkedin]: https://cpco.io/linkedin?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=linkedin
- [twitter]: https://cpco.io/twitter?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=twitter
- [testimonial]: https://cpco.io/leave-testimonial?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=testimonial
- [office_hours]: https://cloudposse.com/office-hours?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=office_hours
- [newsletter]: https://cpco.io/newsletter?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=newsletter
- [discourse]: https://ask.sweetops.com/?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=discourse
- [email]: https://cpco.io/email?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=email
- [commercial_support]: https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=commercial_support
- [we_love_open_source]: https://cpco.io/we-love-open-source?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=we_love_open_source
- [terraform_modules]: https://cpco.io/terraform-modules?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=terraform_modules
- [readme_header_img]: https://cloudposse.com/readme/header/img
- [readme_header_link]: https://cloudposse.com/readme/header/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=readme_header_link
- [readme_footer_img]: https://cloudposse.com/readme/footer/img
- [readme_footer_link]: https://cloudposse.com/readme/footer/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=readme_footer_link
- [readme_commercial_support_img]: https://cloudposse.com/readme/commercial-support/img
- [readme_commercial_support_link]: https://cloudposse.com/readme/commercial-support/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/packages&utm_content=readme_commercial_support_link
- [share_twitter]: https://twitter.com/intent/tweet/?text=Packages&url=https://github.com/cloudposse/packages
- [share_linkedin]: https://www.linkedin.com/shareArticle?mini=true&title=Packages&url=https://github.com/cloudposse/packages
- [share_reddit]: https://reddit.com/submit/?url=https://github.com/cloudposse/packages
- [share_facebook]: https://facebook.com/sharer/sharer.php?u=https://github.com/cloudposse/packages
- [share_googleplus]: https://plus.google.com/share?url=https://github.com/cloudposse/packages
- [share_email]: mailto:?subject=Packages&body=https://github.com/cloudposse/packages
- [beacon]: https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/packages?pixel&cs=github&cm=readme&an=packages
diff --git a/docs/badges.md b/docs/badges.md
index e36f39dfaa..e69de29bb2 100644
--- a/docs/badges.md
+++ b/docs/badges.md
@@ -1,127 +0,0 @@
-## Package Build Status
-| Build Status | Version | Description |
-| ------------ | ------- | ----------- |
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aamtool) | 0.21.0 | Tool for interacting with the Alertmanager API
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aargocd) | 1.8.5 | Declarative GitOpts for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aassume-role) | 0.3.2 | Easily assume AWS roles in your terminal.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aatlantis) | 0.16.1 | Terraform For Teams
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aatmos) | 0.17.0 | Universal Tool for DevOps and Cloud Automation
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aawless) | 0.1.11 | A Mighty CLI for AWS
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-iam-authenticator) | 0.5.2 | A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aaws-vault) | 6.2.0 | A vault for securely storing and accessing AWS credentials in development environments
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acfssl) | 1.5.0 | Cloudflare's PKI and TLS toolkit
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acfssljson) | 1.5.0 | Cloudflare's PKI and TLS toolkit json parser
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Achamber) | 2.9.1 | CLI for managing secrets
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acli53) | 0.8.18 | Command line tool for Amazon Route 53
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acloudflared) | 2021.2.5 | Argo Tunnel client
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acloudposse-atlantis) | 0.9.0.3 | Terraform For Teams, enhanced by Cloud Posse
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Acodefresh) | 0.75.6 | Codefresh CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aconftest) | 0.23.0 | Test your configuration files using Open Policy Agent
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aconsul) | 1.9.3 | Hashicorp consul
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Actop) | 0.7.5 | Top-like interface for container metrics
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Adirenv) | 2.27.0 | Unclutter your .profile
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Adoctl) | 1.57.0 | A command line tool for DigitalOcean services
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aduffle) | 0.3.5b1 | CNAB installer
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aemailcli) | 1.0.3 | Command line email sending client written in Go.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afargate) | 0.3.2 | CLI for AWS Fargate
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afetch) | 0.4.1 | fetch makes it easy to download files, folders, and release assets from a specific public git commit, branch, or tag
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afigurine) | 1.0.1 | Print your name in style
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Afzf) | 0.23.1 | A command-line fuzzy finder
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agh) | 1.6.2 | The GitHub CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aghr) | 0.13.0 | Upload multiple artifacts to GitHub Releases in parallel
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-commenter) | 0.8.0 | Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-release) | 0.10.0 | Commandline app to create and edit releases on Github (and upload artifacts)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agithub-status-updater) | 0.5.0 | Command line utility for updating GitHub commit statuses and enabling required status checks for pull requests
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agitleaks) | 1.2.0 | Audit git repos for secrets 🔑
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ago-jsonnet) | 0.17.0 | This an implementation of Jsonnet in pure Go.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agomplate) | 3.9.0 | A flexible commandline tool for template rendering. Supports lots of local and remote datasources.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agonsul) | 0.2.1 | A stand-alone alternative to git2consul
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agoofys) | 0.24.0 | a high-performance, POSIX-ish Amazon S3 file system written in Go
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agosu) | 1.12.0 | Simple Go-based setuid+setgid+setgroups+exec
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agotop) | 3.0.0 | A terminal based graphical activity monitor inspired by gtop and vtop
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Agrpcurl) | 1.8.0 | Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm) | 3.5.2 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm2) | 2.17.0 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelm3) | 3.5.2 | The Kubernetes Package Manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahelmfile) | 0.138.4 | Deploy Kubernetes Helm Charts
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahtmltest) | 0.14.0 | :white_check_mark: Test generated HTML for problems
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ahugo) | 0.81.0 | The world’s fastest framework for building websites.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajp) | 0.1.3 | Command line interface to JMESPath
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajq) | 1.6.0 | Command-line JSON processor
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajson2hcl) | 0.0.6 | Convert JSON to HCL, and vice versa
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ajx) | 2.1.155 | Jenkins-X
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak3d) | 4.2.0 | Little helper to run Rancher Lab's k3s in Docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak6) | 0.30.0 | A modern load testing tool, using Go and JavaScript - https://k6.io
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ak9s) | 0.24.2 | Kubernetes CLI To Manage Your Clusters In Style
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akatafygio) | 0.8.3 | K8s continuous backup to git
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akfctl) | 1.2.0 | Machine Learning Toolkit for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akind) | 0.10.0 | A tool for running local Kubernetes clusters using Docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akops) | 1.19.1 | Kubernetes Operations (kops) - Production Grade K8s Installation, Upgrades, and Management
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akrew) | 0.4.1 | Kubectl plugin manager
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubecron) | 2.0.0 | Utilities to manage kubernetes cronjobs. Run a CronJob manually for test purposes. Suspend/unsuspend a CronJob
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl) | 1.20.4 | Production-Grade Container Scheduling and Management
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.13) | 1.13.12 | Production-Grade Container Scheduling and Management (v1.13)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.14) | 1.14.10 | Production-Grade Container Scheduling and Management (v1.14)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.15) | 1.15.12 | Production-Grade Container Scheduling and Management (v1.15)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.16) | 1.16.15 | Production-Grade Container Scheduling and Management (v1.16)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.17) | 1.17.17 | Production-Grade Container Scheduling and Management (v1.17)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.18) | 1.18.16 | Production-Grade Container Scheduling and Management (v1.18)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectl-1.19) | 1.19.8 | Production-Grade Container Scheduling and Management (v1.19)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubectx) | 0.9.2 | Switch faster between clusters and namespaces in kubectl
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubens) | 0.9.1 | Switch faster between clusters and namespaces in kubectl
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Akubeval) | 0.15.0 | Validate your Kubernetes configuration files, supports multiple Kubernetes versions
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Alazydocker) | 0.10.0 | The lazier way to manage everything docker
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Alectl) | 0.21.0 | Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aminikube) | 1.17.1 | Run Kubernetes locally
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Amisspell) | 0.3.4 | Correct commonly misspelled English words in source files
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aopa) | 0.26.0 | An open source project to policy-enable your service.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apack) | 0.17.0 | Create cloud native Buildpacks
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apacker) | 1.7.0 | Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apandoc) | 2.11.4 | Universal markup converter
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apgmetrics) | 1.10.5 | Postgres metrics
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apluto) | 4.0.4 | A cli tool to help discover deprecated apiVersions in Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apopeye) | 0.9.0 | A Kubernetes cluster resource sanitizer
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Apromtool) | 2.25.0 | Prometheus CLI tool
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arakkess) | 0.4.7 | Review Access - kubectl plugin to show an access matrix for all available resources
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arancher) | 2.4.10 | Rancher CLI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Arbac-lookup) | 0.6.3 | Find Kubernetes roles and cluster roles bound to any user, service account, or group name.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asaml2aws) | 2.28.2 | CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ascenery) | 0.1.5 | A Terraform plan output prettifier
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asentry-cli) | 1.62.0 | A command line utility to work with Sentry.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ashellcheck) | 0.7.1 | ShellCheck, a static analysis tool for shell scripts
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ashfmt) | 3.2.2 | A shell parser, formatter and interpreter (POSIX/Bash/mksh)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aslack-notifier) | 0.3.0 | Command line utility to send messages with attachments to Slack channels via Incoming Webhooks
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asops) | 3.6.1 | Secrets management stinks, use some sops!
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aspotctl) | 0.0.18 | A unified CLI to manage your [Spot](https://spot.io/) resources.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Astern) | 1.11.0 | ⎈ Multi pod and container log tailing for Kubernetes
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Asudosh) | 0.3.0 | Shell wrapper to run a login shell with `sudo` as the current user for the purpose of audit logging
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport) | 5.1.2 | Secure Access for Developers that doesn't get in the way.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.2) | 4.2.12 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.3) | 4.3.9 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-4.4) | 4.4.7 | Privileged access management for elastic infrastructure.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ateleport-5.0) | 5.0.2 | Secure Access for Developers that doesn't get in the way.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform) | 0.14.7 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.11) | 0.11.14 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.12) | 0.12.30 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.13) | 0.13.6 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-0.14) | 0.14.7 | Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-config-inspect) | 0.0.20210209133302+git4fd17a0faac2 | A helper library for shallow inspection of Terraform configurations
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform-docs) | 0.11.2 | Generate docs from terraform modules
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.11) | 0.11.14 | Terraform (Deprecated package. Use terraform-0.11 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.12) | 0.12.30 | Terraform (Deprecated package. Use terraform-0.12 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterraform_0.13) | 0.13.6 | Terraform (Deprecated package. Use terraform-0.13 instead)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterragrunt) | 0.28.7 | Terragrunt is a thin wrapper for Terraform that provides extra tools for working with multiple Terraform modules.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aterrahelp) | 0.7.4 | Terrahelp is as a command line utility that provides useful tricks like masking of terraform output.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atfenv) | 0.4.0 | Transform environment variables for use with Terraform (e.g. `HOSTNAME` ⇨ `TF_VAR_hostname`)
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atfmask) | 0.7.0 | Terraform utility to mask select output from `terraform plan` and `terraform apply`
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Athanos) | 0.18.0 | Highly available Prometheus setup with long term storage capabilities. CNCF Sandbox project.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Atrivy) | 0.16.0 | A Simple and Comprehensive Vulnerability Scanner for Containers, Suitable for CI
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Aturf) | 0.11.0 | Turf is Cloud Posse's command-line automation helper.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avariant) | 0.37.0 | Variant is a Universal CLI tool that works like a task runner
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avariant2) | 0.37.1 | Second major version of Variant, a Universal CLI tool that works like a task runner
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avault) | 1.6.2 | Hashicorp vault
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avendir) | 0.16.0 | Easy way to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively.
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avenona) | 0.32.2 | Codefresh runtime-environment agent
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Avert) | 0.1.0 | Simple CLI for comparing two or more versions
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ayajsv) | 1.4.0 | Yet Another JSON Schema Validator [CLI]
-[](https://github.com/cloudposse/packages/actions?query=workflow%3Ayq) | 4.6.0 | yq is a portable command-line YAML processor
diff --git a/docs/targets.md b/docs/targets.md
index d8ab5cabd5..e69de29bb2 100644
--- a/docs/targets.md
+++ b/docs/targets.md
@@ -1,134 +0,0 @@
-
-## Makefile Targets
-```text
-amtool 0.21.0 Tool for interacting with the Alertmanager API
-argocd 1.8.5 Declarative GitOpts for Kubernetes
-assume-role 0.3.2 Easily assume AWS roles in your terminal.
-atlantis 0.16.1 Terraform For Teams
-atmos 0.17.0 Universal Tool for DevOps and Cloud Automation
-awless 0.1.11 A Mighty CLI for AWS
-aws-iam-authenticator 0.5.2 A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster
-aws-okta OBSOLETE aws-okta allows users to authenticate with AWS using Okta credentials
-aws-vault 6.2.0 A vault for securely storing and accessing AWS credentials in development environments
-cfssl 1.5.0 Cloudflare's PKI and TLS toolkit
-cfssljson 1.5.0 Cloudflare's PKI and TLS toolkit json parser
-chamber 2.9.1 CLI for managing secrets
-cli53 0.8.18 Command line tool for Amazon Route 53
-cloudflared 2021.2.5 Argo Tunnel client
-cloudposse-atlantis 0.9.0.3 Terraform For Teams, enhanced by Cloud Posse
-codefresh 0.75.6 Codefresh CLI
-conftest 0.23.0 Test your configuration files using Open Policy Agent
-consul 1.9.3 Hashicorp consul
-ctop 0.7.5 Top-like interface for container metrics
-direnv 2.27.0 Unclutter your .profile
-doctl 1.57.0 A command line tool for DigitalOcean services
-duffle 0.3.5b1 CNAB installer
-emailcli 1.0.3 Command line email sending client written in Go.
-fargate 0.3.2 CLI for AWS Fargate
-fetch 0.4.1 fetch makes it easy to download files, folders, and release assets from a specific public git commit, branch, or tag
-figurine 1.0.1 Print your name in style
-fzf 0.23.1 A command-line fuzzy finder
-gh 1.6.2 The GitHub CLI
-ghr 0.13.0 Upload multiple artifacts to GitHub Releases in parallel
-github-commenter 0.8.0 Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues
-github-release 0.10.0 Commandline app to create and edit releases on Github (and upload artifacts)
-github-status-updater 0.5.0 Command line utility for updating GitHub commit statuses and enabling required status checks for pull requests
-gitleaks 1.2.0 Audit git repos for secrets 🔑
-go-jsonnet 0.17.0 This an implementation of Jsonnet in pure Go.
-gomplate 3.9.0 A flexible commandline tool for template rendering. Supports lots of local and remote datasources.
-gonsul 0.2.1 A stand-alone alternative to git2consul
-goofys 0.24.0 a high-performance, POSIX-ish Amazon S3 file system written in Go
-gosu 1.12.0 Simple Go-based setuid+setgid+setgroups+exec
-gotop 3.0.0 A terminal based graphical activity monitor inspired by gtop and vtop
-grpcurl 1.8.0 Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
-helm 3.5.2 The Kubernetes Package Manager
-helm2 2.17.0 The Kubernetes Package Manager
-helm3 3.5.2 The Kubernetes Package Manager
-helmfile 0.138.4 Deploy Kubernetes Helm Charts
-htmltest 0.14.0 :white_check_mark: Test generated HTML for problems
-hugo 0.81.0 The world’s fastest framework for building websites.
-jp 0.1.3 Command line interface to JMESPath
-jq 1.6.0 Command-line JSON processor
-json2hcl 0.0.6 Convert JSON to HCL, and vice versa
-jx 2.1.155 Jenkins-X
-k3d 4.2.0 Little helper to run Rancher Lab's k3s in Docker
-k6 0.30.0 A modern load testing tool, using Go and JavaScript - https://k6.io
-k9s 0.24.2 Kubernetes CLI To Manage Your Clusters In Style
-katafygio 0.8.3 K8s continuous backup to git
-kfctl 1.2.0 Machine Learning Toolkit for Kubernetes
-kind 0.10.0 A tool for running local Kubernetes clusters using Docker
-kops 1.19.1 Kubernetes Operations (kops) - Production Grade K8s Installation, Upgrades, and Management
-kops-1.12 OBSOLETE Kubernetes Operations (kops) - Production Grade K8s Installation, Upgrades, and Management
-krew 0.4.1 Kubectl plugin manager
-kubecron 2.0.0 Utilities to manage kubernetes cronjobs. Run a CronJob manually for test purposes. Suspend/unsuspend a CronJob
-kubectl 1.20.4 Production-Grade Container Scheduling and Management
-kubectl-1.13 1.13.12 Production-Grade Container Scheduling and Management (v1.13)
-kubectl-1.14 1.14.10 Production-Grade Container Scheduling and Management (v1.14)
-kubectl-1.15 1.15.12 Production-Grade Container Scheduling and Management (v1.15)
-kubectl-1.16 1.16.15 Production-Grade Container Scheduling and Management (v1.16)
-kubectl-1.17 1.17.17 Production-Grade Container Scheduling and Management (v1.17)
-kubectl-1.18 1.18.16 Production-Grade Container Scheduling and Management (v1.18)
-kubectl-1.19 1.19.8 Production-Grade Container Scheduling and Management (v1.19)
-kubectx 0.9.2 Switch faster between clusters and namespaces in kubectl
-kubens 0.9.1 Switch faster between clusters and namespaces in kubectl
-kubeval 0.15.0 Validate your Kubernetes configuration files, supports multiple Kubernetes versions
-lazydocker 0.10.0 The lazier way to manage everything docker
-lectl 0.21.0 Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh
-minikube 1.17.1 Run Kubernetes locally
-misspell 0.3.4 Correct commonly misspelled English words in source files
-nomad OBSOLETE Hashicorp nomad
-opa 0.26.0 An open source project to policy-enable your service.
-pack 0.17.0 Create cloud native Buildpacks
-packer 1.7.0 Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.
-pandoc 2.11.4 Universal markup converter
-pgmetrics 1.10.5 Postgres metrics
-pluto 4.0.4 A cli tool to help discover deprecated apiVersions in Kubernetes
-popeye 0.9.0 A Kubernetes cluster resource sanitizer
-promtool 2.25.0 Prometheus CLI tool
-rakkess 0.4.7 Review Access - kubectl plugin to show an access matrix for all available resources
-rancher 2.4.10 Rancher CLI
-rbac-lookup 0.6.3 Find Kubernetes roles and cluster roles bound to any user, service account, or group name.
-retry OBSOLETE ♻️ Functional mechanism based on channels to perform actions repetitively until successful.
-saml2aws 2.28.2 CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP
-scenery 0.1.5 A Terraform plan output prettifier
-sentinel OBSOLETE Hashicorp sentinel
-sentry-cli 1.62.0 A command line utility to work with Sentry.
-shellcheck 0.7.1 ShellCheck, a static analysis tool for shell scripts
-shfmt 3.2.2 A shell parser, formatter and interpreter (POSIX/Bash/mksh)
-slack-notifier 0.3.0 Command line utility to send messages with attachments to Slack channels via Incoming Webhooks
-sops 3.6.1 Secrets management stinks, use some sops!
-spotctl 0.0.18 A unified CLI to manage your [Spot](https://spot.io/) resources.
-stern 1.11.0 ⎈ Multi pod and container log tailing for Kubernetes
-sudosh 0.3.0 Shell wrapper to run a login shell with `sudo` as the current user for the purpose of audit logging
-teleport 5.1.2 Secure Access for Developers that doesn't get in the way.
-teleport-4.2 4.2.12 Privileged access management for elastic infrastructure.
-teleport-4.3 4.3.9 Privileged access management for elastic infrastructure.
-teleport-4.4 4.4.7 Privileged access management for elastic infrastructure.
-teleport-5.0 5.0.2 Secure Access for Developers that doesn't get in the way.
-terraform 0.14.7 Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-terraform-0.11 0.11.14 Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-terraform-0.12 0.12.30 Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-terraform-0.13 0.13.6 Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-terraform-0.14 0.14.7 Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
-terraform-config-inspect 0.0.20210209133302+git4fd17a0faac2 A helper library for shallow inspection of Terraform configurations
-terraform-docs 0.11.2 Generate docs from terraform modules
-terraform_0.11 0.11.14 Terraform (Deprecated package. Use terraform-0.11 instead)
-terraform_0.12 0.12.30 Terraform (Deprecated package. Use terraform-0.12 instead)
-terraform_0.13 0.13.6 Terraform (Deprecated package. Use terraform-0.13 instead)
-terragrunt 0.28.7 Terragrunt is a thin wrapper for Terraform that provides extra tools for working with multiple Terraform modules.
-terrahelp 0.7.4 Terrahelp is as a command line utility that provides useful tricks like masking of terraform output.
-tfenv 0.4.0 Transform environment variables for use with Terraform (e.g. `HOSTNAME` ⇨ `TF_VAR_hostname`)
-tfmask 0.7.0 Terraform utility to mask select output from `terraform plan` and `terraform apply`
-thanos 0.18.0 Highly available Prometheus setup with long term storage capabilities. CNCF Sandbox project.
-trivy 0.16.0 A Simple and Comprehensive Vulnerability Scanner for Containers, Suitable for CI
-turf 0.11.0 Turf is Cloud Posse's command-line automation helper.
-variant 0.37.0 Variant is a Universal CLI tool that works like a task runner
-variant2 0.37.1 Second major version of Variant, a Universal CLI tool that works like a task runner
-vault 1.6.2 Hashicorp vault
-vendir 0.16.0 Easy way to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively.
-venona 0.32.2 Codefresh runtime-environment agent
-vert 0.1.0 Simple CLI for comparing two or more versions
-yajsv 1.4.0 Yet Another JSON Schema Validator [CLI]
-yq 4.6.0 yq is a portable command-line YAML processor
-```
-
diff --git a/vendor/kubectl-1.17/kubectl-1.17.post-deinstall b/vendor/kubectl-1.17/kubectl-1.17.post-deinstall
index 199ec0b30d..38fe6d89fa 100755
--- a/vendor/kubectl-1.17/kubectl-1.17.post-deinstall
+++ b/vendor/kubectl-1.17/kubectl-1.17.post-deinstall
@@ -1,7 +1,7 @@
#!/bin/sh
# This is an Alpine `deinstall` hook that removes the alternative
MASTER_PACKAGE_NAME=kubectl
-MAJOR_VERSION=1.16
+MAJOR_VERSION=1.17
PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
update-alternatives --remove ${PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} --quiet
diff --git a/vendor/kubectl-1.18/kubectl-1.18.post-deinstall b/vendor/kubectl-1.18/kubectl-1.18.post-deinstall
index 199ec0b30d..ed09793241 100755
--- a/vendor/kubectl-1.18/kubectl-1.18.post-deinstall
+++ b/vendor/kubectl-1.18/kubectl-1.18.post-deinstall
@@ -1,7 +1,7 @@
#!/bin/sh
# This is an Alpine `deinstall` hook that removes the alternative
MASTER_PACKAGE_NAME=kubectl
-MAJOR_VERSION=1.16
+MAJOR_VERSION=1.18
PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
update-alternatives --remove ${PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} --quiet
diff --git a/vendor/kubectl-1.19/kubectl-1.19.post-deinstall b/vendor/kubectl-1.19/kubectl-1.19.post-deinstall
index 199ec0b30d..ae2e5206d7 100755
--- a/vendor/kubectl-1.19/kubectl-1.19.post-deinstall
+++ b/vendor/kubectl-1.19/kubectl-1.19.post-deinstall
@@ -1,7 +1,7 @@
#!/bin/sh
# This is an Alpine `deinstall` hook that removes the alternative
MASTER_PACKAGE_NAME=kubectl
-MAJOR_VERSION=1.16
+MAJOR_VERSION=1.19
PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
update-alternatives --remove ${PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} --quiet
diff --git a/vendor/kubectl-1.20/DESCRIPTION b/vendor/kubectl-1.20/DESCRIPTION
new file mode 100644
index 0000000000..a91a5ed4e0
--- /dev/null
+++ b/vendor/kubectl-1.20/DESCRIPTION
@@ -0,0 +1 @@
+Production-Grade Container Scheduling and Management (v1.19)
diff --git a/vendor/kubectl-1.20/LICENSE b/vendor/kubectl-1.20/LICENSE
new file mode 100644
index 0000000000..7a85ddd4e2
--- /dev/null
+++ b/vendor/kubectl-1.20/LICENSE
@@ -0,0 +1 @@
+APACHE-2.0
diff --git a/vendor/kubectl-1.20/Makefile b/vendor/kubectl-1.20/Makefile
new file mode 100644
index 0000000000..92e47eef24
--- /dev/null
+++ b/vendor/kubectl-1.20/Makefile
@@ -0,0 +1,21 @@
+export MASTER_PACKAGE_NAME = kubectl
+export MAJOR_VERSION = 1.20
+export PACKAGE_NAME = $(MASTER_PACKAGE_NAME)-$(MAJOR_VERSION)
+export PACKAGE_REPO_NAME = kubernetes
+export INSTALL_DIR = /usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+
+include ../../tasks/Makefile.vendor_includes
+
+# Package details
+export VENDOR = kubernetes
+export DOWNLOAD_URL = https://storage.googleapis.com/kubernetes-release/release/v$(PACKAGE_VERSION)/bin/$(OS)/$(ARCH)/kubectl
+export APK_BUILD_TEMPLATE = APKBUILD.github-binary
+export APKBUILD_DEPENDS += dpkg
+export APKBUILD_INSTALL_SCRIPTS = $(PACKAGE_NAME).post-install $(PACKAGE_NAME).post-deinstall
+
+install:
+ $(call download_binary)
+
+test:
+ pinned-package-sanity-check "$(PACKAGE_VERSION)" "$(MAJOR_VERSION)"
+ $(PACKAGE_EXE) version --client | grep -F $(PACKAGE_VERSION)
diff --git a/vendor/kubectl-1.20/RELEASE b/vendor/kubectl-1.20/RELEASE
new file mode 100644
index 0000000000..573541ac97
--- /dev/null
+++ b/vendor/kubectl-1.20/RELEASE
@@ -0,0 +1 @@
+0
diff --git a/vendor/kubectl-1.20/VERSION b/vendor/kubectl-1.20/VERSION
new file mode 100644
index 0000000000..0bd54efd31
--- /dev/null
+++ b/vendor/kubectl-1.20/VERSION
@@ -0,0 +1 @@
+1.20.4
diff --git a/vendor/kubectl-1.20/kubectl-1.20.post-deinstall b/vendor/kubectl-1.20/kubectl-1.20.post-deinstall
new file mode 100755
index 0000000000..99e80f144e
--- /dev/null
+++ b/vendor/kubectl-1.20/kubectl-1.20.post-deinstall
@@ -0,0 +1,9 @@
+#!/bin/sh
+# This is an Alpine `deinstall` hook that removes the alternative
+MASTER_PACKAGE_NAME=kubectl
+MAJOR_VERSION=1.20
+PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
+INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+update-alternatives --remove ${PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} --quiet
+update-alternatives --remove ${MASTER_PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} --quiet
+exit 0
diff --git a/vendor/kubectl-1.20/kubectl-1.20.post-install b/vendor/kubectl-1.20/kubectl-1.20.post-install
new file mode 100755
index 0000000000..1585960f0f
--- /dev/null
+++ b/vendor/kubectl-1.20/kubectl-1.20.post-install
@@ -0,0 +1,12 @@
+#!/bin/sh
+# This is an Alpine Package `post-install` hook that links
+# an alternative from `/usr/share/${PACKAGE_NAME}/$version/bin` into `/usr/bin/`
+MASTER_PACKAGE_NAME=kubectl
+MAJOR_VERSION=1.20
+PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
+INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+
+mkdir -p ${INSTALL_DIR}
+update-alternatives --install /usr/bin/${PACKAGE_NAME} ${PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} 1
+update-alternatives --install /usr/bin/${MASTER_PACKAGE_NAME} ${MASTER_PACKAGE_NAME} ${INSTALL_DIR}/${PACKAGE_NAME} 19
+exit 0
diff --git a/vendor/terraform-0.15/DESCRIPTION b/vendor/terraform-0.15/DESCRIPTION
new file mode 100644
index 0000000000..456f0a2ba8
--- /dev/null
+++ b/vendor/terraform-0.15/DESCRIPTION
@@ -0,0 +1 @@
+Terraform is a tool for building, changing, and combining infrastructure safely and efficiently.
diff --git a/vendor/terraform-0.15/LICENSE b/vendor/terraform-0.15/LICENSE
new file mode 100644
index 0000000000..eb86038d19
--- /dev/null
+++ b/vendor/terraform-0.15/LICENSE
@@ -0,0 +1 @@
+MPL-2.0
diff --git a/vendor/terraform-0.15/Makefile b/vendor/terraform-0.15/Makefile
new file mode 100644
index 0000000000..40c38f295c
--- /dev/null
+++ b/vendor/terraform-0.15/Makefile
@@ -0,0 +1,27 @@
+# Package details
+export VENDOR ?= hashicorp
+export PACKAGE_REPO_NAME = terraform
+export PACKAGE_EXE = terraform
+export MASTER_PACKAGE_NAME = terraform
+export MAJOR_VERSION = 0.15
+export PACKAGE_PRERELEASE_ENABLED = true
+export PACKAGE_NAME = $(MASTER_PACKAGE_NAME)-$(MAJOR_VERSION)
+
+include ../../tasks/Makefile.vendor_includes
+
+# NOTE: This build uses a custom build template ./APKBUILD
+export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary
+export DOWNLOAD_URL ?= https://releases.hashicorp.com/terraform/$(PACKAGE_VERSION)/terraform_$(PACKAGE_VERSION)_$(OS)_$(ARCH).zip
+export APKBUILD_DEPENDS += dpkg
+export APKBUILD_INSTALL_SCRIPTS = $(PACKAGE_NAME).post-install $(PACKAGE_NAME).post-deinstall
+export INSTALL_DIR = /usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+
+install:
+ mkdir -p $(TMP)/$(PACKAGE_NAME)
+ $(CURL) -o $(TMP)/$(PACKAGE_NAME)/$(PACKAGE_NAME).zip $(DOWNLOAD_URL)
+ unzip -d $(TMP)/$(PACKAGE_NAME) $(TMP)/$(PACKAGE_NAME)/$(PACKAGE_NAME).zip
+ mv $(TMP)/$(PACKAGE_NAME)/terraform $(INSTALL_PATH)/$(PACKAGE_EXE)
+ chmod +x $(INSTALL_PATH)/$(PACKAGE_EXE)
+
+test:
+ $(PACKAGE_EXE) version | grep $(MAJOR_VERSION)
diff --git a/vendor/terraform-0.15/RELEASE b/vendor/terraform-0.15/RELEASE
new file mode 100644
index 0000000000..573541ac97
--- /dev/null
+++ b/vendor/terraform-0.15/RELEASE
@@ -0,0 +1 @@
+0
diff --git a/vendor/terraform-0.15/VERSION b/vendor/terraform-0.15/VERSION
new file mode 100644
index 0000000000..d863325d51
--- /dev/null
+++ b/vendor/terraform-0.15/VERSION
@@ -0,0 +1 @@
+0.15.0-beta1
diff --git a/vendor/terraform-0.15/terraform-0.15.post-deinstall b/vendor/terraform-0.15/terraform-0.15.post-deinstall
new file mode 100755
index 0000000000..0208de243d
--- /dev/null
+++ b/vendor/terraform-0.15/terraform-0.15.post-deinstall
@@ -0,0 +1,11 @@
+#!/bin/sh
+# This is an Alpine `deinstall` hook that removes the alternative
+MASTER_PACKAGE_NAME=terraform
+MAJOR_VERSION=0.15
+PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
+INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+
+update-alternatives --remove ${PACKAGE_NAME} ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} --quiet
+update-alternatives --remove ${PACKAGE_NAME}-direnv ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} --quiet
+update-alternatives --remove ${MASTER_PACKAGE_NAME} ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} --quiet
+exit 0
diff --git a/vendor/terraform-0.15/terraform-0.15.post-install b/vendor/terraform-0.15/terraform-0.15.post-install
new file mode 100755
index 0000000000..3eb728fcf6
--- /dev/null
+++ b/vendor/terraform-0.15/terraform-0.15.post-install
@@ -0,0 +1,29 @@
+#!/bin/sh
+MASTER_PACKAGE_NAME=terraform
+PRIORITY="15"
+MAJOR_VERSION="0.${PRIORITY}"
+PACKAGE_NAME=${MASTER_PACKAGE_NAME}-${MAJOR_VERSION}
+
+# INSTALL_DIR is where the binary is ultimately installed
+INSTALL_DIR=/usr/share/${MASTER_PACKAGE_NAME}/${MAJOR_VERSION}/bin
+DIRENV_SUPPORT_DIR=/usr/local/terraform/${MAJOR_VERSION}/bin
+
+mkdir -p ${INSTALL_DIR}
+mkdir -p ${DIRENV_SUPPORT_DIR}
+
+# --install
+# is the symlink people will actually invoke
+# is the name for this group of alternatives
+# is the location of the actual binary
+# is an integer. The alternative with the highest priority
+# number will be automatically selected
+
+## Install terraform-0.14 command
+update-alternatives --install /usr/bin/${PACKAGE_NAME} ${PACKAGE_NAME} ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} 1
+
+# Install /usr/local/terraform/0.14/bin/terraform for `direnv/use terraform`
+update-alternatives --install ${DIRENV_SUPPORT_DIR}/terraform ${PACKAGE_NAME}-direnv ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} 1
+
+# Install terraform command
+update-alternatives --install /usr/bin/${MASTER_PACKAGE_NAME} ${MASTER_PACKAGE_NAME} ${INSTALL_DIR}/${MASTER_PACKAGE_NAME} ${PRIORITY}
+exit 0