-
Notifications
You must be signed in to change notification settings - Fork 73
90 lines (74 loc) · 2.82 KB
/
auto-delete-on-schedule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: ROSA Scheduled Delete
on:
workflow_dispatch:
schedule:
- cron: '0 21 * * *' # Runs every day at 9 PM UTC.
jobs:
rosa-delete:
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak-benchmark'
uses: ./.github/workflows/rosa-cluster-delete.yml
secrets: inherit
with:
deleteAll: yes
aurora-delete:
needs: rosa-delete
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure AWS CLI
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region ${{ vars.AWS_DEFAULT_REGION }}
- shell: bash
run: ./provision/aws/rds/aurora_cluster_reaper.sh
env:
AWS_REGION: ${{ vars.AWS_DEFAULT_REGION }}
route53-delete:
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak-benchmark'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup ROSA CLI
uses: ./.github/actions/rosa-cli-setup
with:
aws-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-default-region: ${{ vars.AWS_DEFAULT_REGION }}
rosa-token: ${{ secrets.ROSA_TOKEN }}
- name: Delete Route 53 entries
run: ./provision/aws/route53/route53_delete.sh
env:
AWS_REGION: ${{ vars.AWS_DEFAULT_REGION }}
REAPER: TRUE
delete-check:
needs: [rosa-delete, aurora-delete, route53-delete]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure AWS CLI
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region ${{ vars.AWS_DEFAULT_REGION }}
- shell: bash
run: ./provision/aws/aws_check_vpcs.sh
- shell: bash
if: ${{ always() }}
run: ./provision/aws/aws_check_subnet_groups.sh
accelerator-delete:
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak-benchmark'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure AWS CLI
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region ${{ vars.AWS_DEFAULT_REGION }}
- name: Delete Global Accelerators
run: ./provision/aws/global-accelerator/accelerator_reaper.sh