-
Notifications
You must be signed in to change notification settings - Fork 17
169 lines (143 loc) · 7.47 KB
/
AWS-EKS-backup.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
name: AWS EKS Backup
on:
workflow_dispatch:
inputs:
custom_backup_name:
description: "Custom name backup. Use separator - :"
required: false
namespaces:
description: "List namespaces. Use separator , :"
required: true
source_cluster:
description: 'Select source cluster:'
required: true
type: choice
options:
- stg
- prod
schedule:
- cron: 0 0 * * *
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
BACKUP_NAME_FULL: ${{ github.run_number }}-${{ github.event.inputs.source_cluster }}---full-backup-`date +"%d-%m-%Y"`
BACKUP_NAME_SPECIFIC: ${{ github.run_number }}-${{ github.event.inputs.source_cluster }}---specific-backup-`date +"%d-%m-%Y"`
jobs:
backup_all_namespaces:
name: "Backup all namespaces on ${{ github.event.inputs.source_cluster }}"
if: ${{ github.event.inputs.namespaces == 'All' || github.event.schedule == '0 0 * * *' }}
runs-on: ubuntu-latest
steps:
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.VELERO_ID_PROD }}
aws-secret-access-key: ${{ secrets.VELERO_KEY_PROD }}
aws-region: ${{ secrets.VELERO_REGION_PROD }}
if: ${{ github.event.inputs.source_cluster == 'prod' || github.event.schedule == '0 0 * * *' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_PROD }} update-kubeconfig --kubeconfig $HOME/.kube/config_prod --name k8s-gear
if: ${{ github.event.inputs.source_cluster == 'prod' || github.event.schedule == '0 0 * * *' }}
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.VELERO_ID_STG }}
aws-secret-access-key: ${{ secrets.VELERO_KEY_STG }}
aws-region: ${{ secrets.VELERO_REGION_STG }}
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_STG }} update-kubeconfig --kubeconfig $HOME/.kube/config_stg --name k8s-gear-stg
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
wget https://github.com/vmware-tanzu/velero/releases/download/v1.8.1/velero-v1.8.1-linux-amd64.tar.gz
tar -xvf velero*.tar.gz
cd ./velero-v1.8.1-linux-amd64
chmod +x ./velero
- run: |
./velero backup create \
${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} \
--kubeconfig $HOME/.kube/config_prod \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' || github.event.schedule == '0 0 * * *'}}
- run: |
./velero backup create \
${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} \
--kubeconfig $HOME/.kube/config_stg \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
./velero backup describe ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' || github.event.schedule == '0 0 * * *'}}
- run: |
./velero backup describe ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
./velero backup logs ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' || github.event.schedule == '0 0 * * *' }}
- run: |
./velero backup logs ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}
backup_specific_namespaces:
name: "Backup namespaces: ${{ github.event.inputs.namespaces }} on ${{ github.event.inputs.source_cluster }}"
if: ${{ github.event.inputs.namespaces != 'All' }}
runs-on: ubuntu-latest
steps:
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.VELERO_ID_PROD }}
aws-secret-access-key: ${{ secrets.VELERO_KEY_PROD }}
aws-region: ${{ secrets.VELERO_REGION_PROD }}
if: ${{ github.event.inputs.source_cluster == 'prod' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_PROD }} update-kubeconfig --kubeconfig $HOME/.kube/config_prod --name k8s-gear
if: ${{ github.event.inputs.source_cluster == 'prod' }}
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.VELERO_ID_STG }}
aws-secret-access-key: ${{ secrets.VELERO_KEY_STG }}
aws-region: ${{ secrets.VELERO_REGION_STG }}
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_STG }} update-kubeconfig --kubeconfig $HOME/.kube/config_stg --name k8s-gear-stg
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
wget https://github.com/vmware-tanzu/velero/releases/download/v1.8.1/velero-v1.8.1-linux-amd64.tar.gz
tar -xvf velero*.tar.gz
cd ./velero-v1.8.1-linux-amd64
chmod +x ./velero
- run: |
./velero backup create \
${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} \
--include-namespaces ${{ github.event.inputs.namespaces }} \
--kubeconfig $HOME/.kube/config_prod \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' }}
- run: |
./velero backup create \
${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_FULL }} \
--include-namespaces ${{ github.event.inputs.namespaces }} \
--kubeconfig $HOME/.kube/config_stg \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
./velero backup describe ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_SPECIFIC }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' }}
- run: |
./velero backup describe ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_SPECIFIC }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}
- run: |
./velero backup logs ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_SPECIFIC }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'prod' }}
- run: |
./velero backup logs ${{ github.event.inputs.custom_backup_name || env.BACKUP_NAME_SPECIFIC }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.source_cluster == 'stg' }}