-
Notifications
You must be signed in to change notification settings - Fork 18
173 lines (147 loc) · 7.54 KB
/
AWS-EKS-restore.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
170
171
172
173
name: AWS EKS Restore
on:
workflow_dispatch:
inputs:
backup_name:
description: "Name backup to restore:"
required: true
namespaces:
description: "List namespaces. Use separator , :"
required: true
destination_cluster:
description: "Select destination cluster:"
required: true
type: choice
options:
- stg
- prod
prod_password:
description: "Password for restore on prod cluster:"
required: false
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
EKS_RESTORE_PASSWORD_PROD: ${{ secrets.EKS_RESTORE_PASSWORD_PROD }}
jobs:
restore_all_namespaces:
name: "Restore all namespaces to ${{ github.event.inputs.destination_cluster }}"
if: ${{ github.event.inputs.namespaces == 'All' }}
runs-on: ubuntu-latest
steps:
- uses: aws-actions/configure-aws-credentials@v4
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.destination_cluster == 'prod' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_PROD }} update-kubeconfig --kubeconfig $HOME/.kube/config_prod --name k8s-gear
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- uses: aws-actions/configure-aws-credentials@v4
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.destination_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.destination_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 restore create \
${{ github.run_number }}-${{ github.event.inputs.backup_name }} \
--from-backup ${{ github.event.inputs.backup_name }} \
--kubeconfig $HOME/.kube/config_prod \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' && github.event.inputs.prod_password == env.EKS_RESTORE_PASSWORD_PROD }}
- run: |
./velero restore create \
${{ github.run_number }}-${{ github.event.inputs.backup_name }} \
--from-backup ${{ github.event.inputs.backup_name }} \
--kubeconfig $HOME/.kube/config_stg \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}
- run: |
./velero restore describe ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- run: |
./velero restore describe ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}
- run: |
./velero restore logs ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- run: |
./velero restore logs ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}
restore_specific_namespaces:
name: "Restore namespaces: ${{ github.event.inputs.namespaces }} to ${{ github.event.inputs.destination_cluster }}"
if: ${{ github.event.inputs.namespaces != 'All' }}
runs-on: ubuntu-latest
steps:
- uses: aws-actions/configure-aws-credentials@v4
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.destination_cluster == 'prod' }}
- run: |
aws eks --region ${{ secrets.VELERO_REGION_PROD }} update-kubeconfig --kubeconfig $HOME/.kube/config_prod --name k8s-gear
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- uses: aws-actions/configure-aws-credentials@v4
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.destination_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.destination_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 restore create \
${{ github.run_number }}-${{ github.event.inputs.backup_name }} \
--from-backup ${{ github.event.inputs.backup_name }} \
--include-namespaces ${{ github.event.inputs.namespaces }} \
--kubeconfig $HOME/.kube/config_prod \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' && github.event.inputs.prod_password == env.EKS_RESTORE_PASSWORD_PROD }}
- run: |
./velero restore create \
${{ github.run_number }}-${{ github.event.inputs.backup_name }} \
--from-backup ${{ github.event.inputs.backup_name }} \
--include-namespaces ${{ github.event.inputs.namespaces }} \
--kubeconfig $HOME/.kube/config_stg \
--wait
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}
- run: |
./velero restore describe ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- run: |
./velero restore describe ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}
- run: |
./velero restore logs ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_prod
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'prod' }}
- run: |
./velero restore logs ${{ github.run_number }}-${{ github.event.inputs.backup_name }} --kubeconfig $HOME/.kube/config_stg
working-directory: ./velero-v1.8.1-linux-amd64
if: ${{ github.event.inputs.destination_cluster == 'stg' }}