Test cleanup #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test cleanup | |
on: | |
workflow_dispatch: | |
inputs: | |
clusterId: | |
description: 'Cluster ID' | |
required: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build: | |
name: cleanup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '17' | |
- name: Install utilities | |
run: | | |
sudo apt install -y gettext | |
mkdir -p ${HOME}/.local/bin | |
wget https://github.com/jckuester/awsweeper/releases/download/v0.12.0/awsweeper_0.12.0_linux_amd64.tar.gz | |
tar zxf awsweeper_0.12.0_linux_amd64.tar.gz | |
mv awsweeper_0.12.0_linux_amd64/awsweeper ${HOME}/.local/bin | |
wget https://github.com/eksctl-io/eksctl/releases/download/v0.150.0/eksctl_Linux_amd64.tar.gz | |
tar zxf eksctl_Linux_amd64.tar.gz | |
mv eksctl ${HOME}/.local/bin | |
chmod +x ${HOME}/.local/bin/* | |
echo "${HOME}/.local/bin" >> $GITHUB_PATH | |
- name: Get AWS credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-duration-seconds: 3600 | |
aws-region: ${{ secrets.AWS_REGION }} | |
role-session-name: GithubActionsSession | |
- name: Cleanup environment | |
timeout-minutes: 60 | |
env: | |
CLUSTER_ID: ${{ github.event.inputs.clusterId }} | |
AWS_REGION: "${{ secrets.AWS_REGION }}" | |
run: | | |
export CLEANUP_ENVIRONMENT_NAME="$CLUSTER_ID" | |
export AWS_DEFAULT_REGION="$AWS_REGION" | |
envsubst < hack/lib/filter.yml > filter.yml | |
cat filter.yml | |
awsweeper --force filter.yml | |
make destroy-infrastructure environment="$CLUSTER_ID" |