generated from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (35 loc) · 1.2 KB
/
cncf-playground-reset.yaml
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
name: Playground CNCF - Reset Non-essential Namespaces and Reboot
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Run the job every day at midnight UTC
jobs:
reset:
name: reset
if: github.repository == 'meshery/meshery'
runs-on: ubuntu-latest
steps:
- name: Cluster cleanup by running the cleanup script inside VM
uses: appleboy/ssh-action@master
with:
host: secrets.METAL_SERVER1
username: root
key: ${{ secrets.METAL_SSH_KEY }}
script: |
cd meshery/install/playground; ./playground-cleanup.sh
# reboot:
# name: Reboot Metal servers
# needs: reset
# if: github.repository == 'meshery/meshery'
# runs-on: ubuntu-latest
# steps:
# - name: Download and install Equinix Metal CLI
# run: |
# curl -L https://github.com/equinix/metal-cli/releases/latest/download/metal-linux-amd64 -o metal
# chmod +x metal
# sudo mv metal /usr/local/bin/metal
# - name: Reboot both servers
# env:
# METAL_AUTH_TOKEN: ${{ secrets.METAL_AUTH_TOKEN }}
# run: |
# METAL_AUTH_TOKEN=$METAL_AUTH_TOKEN metal device reboot -i ${{ secrets.METAL_SERVER2 }}