Demo Reset #24520
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: Demo Reset | |
# Controls when the workflow will run | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# OLD_INSTANCE_SNAPSHOT_NAME=$(aws lightsail get-instance-snapshots | grep '"name": "CasaOS-Demo-Snapshot-[0-9]' | sed 's/ //g' | sed 's/"//g' | sed 's/,//g' | sed 's/name://g') | |
# OLD_INSTANCE_NAME=$(aws lightsail get-instances | grep '"name": "CasaOS-Demo-[0-9]' | sed 's/ //g' | sed 's/"//g' | sed 's/,//g' | sed 's/name://g') | |
# NEW_INSTANCE_NAME=CasaOS-Demo-$(date +%s) | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
reset: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Configure AWS credentials from Test account | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-west-2 | |
- name: Get old instance and snapshot name, create new instance name | |
run: | | |
echo "OLD_INSTANCE_SNAPSHOT_NAME=CasaOS-v0.4.4-3-Demo-1700132299" >> $GITHUB_ENV | |
echo "OLD_INSTANCE_NAME=$(aws lightsail get-instances | grep '"name": "CasaOS-Demo-[0-9]' | tail -1 | sed 's/ //g' | sed 's/"//g' | sed 's/,//g' | sed 's/name://g')" >> $GITHUB_ENV | |
# echo "OLD_INSTANCE_NAME=CasaOS-Demo-1687680295" >> $GITHUB_ENV | |
echo "NEW_INSTANCE_NAME= CasaOS-Demo-$(date +%s)" >> $GITHUB_ENV | |
- name: Create instances from snapshot | |
run: | | |
aws lightsail create-instances-from-snapshot \ | |
--instance-snapshot-name ${{ env.OLD_INSTANCE_SNAPSHOT_NAME }} \ | |
--instance-names ${{ env.NEW_INSTANCE_NAME }} \ | |
--availability-zone us-west-2a \ | |
--bundle-id medium_2_0 | |
- name: Wait for new instance running | |
run: | | |
TIMEOUT=$(($(date +%s)+600)) | |
while [ $TIMEOUT -gt $(date +%s) ] | |
do | |
NEW_INSTANCE_STATE=$(aws lightsail get-instance-state --instance-name ${{ env.NEW_INSTANCE_NAME }} | grep '"name":' | sed 's/ //g' | sed 's/"//g' | sed 's/name://g') | |
if [ $NEW_INSTANCE_STATE == running ] | |
then | |
echo "New instance is running now" | |
sleep 10s | |
break | |
fi | |
done | |
- name: Put instance public ports | |
run: | | |
aws lightsail put-instance-public-ports \ | |
--port-infos fromPort=0,toPort=65535,protocol=all \ | |
--instance-name ${{ env.NEW_INSTANCE_NAME }} | |
- name: Attach static ip | |
run: | | |
aws lightsail attach-static-ip \ | |
--static-ip-name CasaOS-Demo-IP \ | |
--instance-name ${{ env.NEW_INSTANCE_NAME }} | |
- name: Delete old instance | |
run: | | |
aws lightsail delete-instance \ | |
--instance-name ${{ env.OLD_INSTANCE_NAME }} | |
- name: Demo Reset Error Handling | |
if: ${{ failure() }} | |
run: | | |
curl -X POST -H "Content-Type: application/json" -d '{"msg_type":"text","content":{"text":"Demo Reset Error"}}' ${{ secrets.SSH_ROBOT_URL }} | |