From 0f981f33c4f618efb16f8c2c7436902fcf2fdf1f Mon Sep 17 00:00:00 2001 From: Rory Powell Date: Thu, 9 Mar 2023 11:02:09 +0000 Subject: [PATCH] Re-add legacy preprod (#9953) * Re-add legacy preprod * Remove needs images --- .github/workflows/deploy-preprod.yml | 53 ++++++++++++++++++++++++++++ .github/workflows/release-master.yml | 3 ++ 2 files changed, 56 insertions(+) create mode 100644 .github/workflows/deploy-preprod.yml diff --git a/.github/workflows/deploy-preprod.yml b/.github/workflows/deploy-preprod.yml new file mode 100644 index 0000000000..91797b24e6 --- /dev/null +++ b/.github/workflows/deploy-preprod.yml @@ -0,0 +1,53 @@ +name: "deploy-preprod" +on: + workflow_dispatch: + workflow_call: + +jobs: + deploy-to-legacy-preprod-env: + runs-on: ubuntu-latest + steps: + - name: 'Get Previous tag' + id: previoustag + uses: "WyriHaximus/github-action-get-previous-tag@v1" + + - name: Configure AWS Credentials + 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: eu-west-1 + + - name: Pull values.yaml from budibase-infra + run: | + curl -H "Authorization: token ${{ secrets.GH_PERSONAL_TOKEN }}" \ + -H 'Accept: application/vnd.github.v3.raw' \ + -o values.preprod.yaml \ + -L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/budibase-preprod/values.yaml + wc -l values.preprod.yaml + + - name: Deploy to Preprod Environment + uses: budibase/helm@v1.8.0 + with: + release: budibase-preprod + namespace: budibase + chart: charts/budibase + token: ${{ github.token }} + helm: helm3 + values: | + globals: + appVersion: ${{ steps.previoustag.outputs.tag }} + ingress: + enabled: true + nginx: true + value-files: >- + [ + "values.preprod.yaml" + ] + + - name: Discord Webhook Action + uses: tsickert/discord-webhook@v4.0.0 + with: + webhook-url: ${{ secrets.PROD_DEPLOY_WEBHOOK_URL }} + content: "Preprod Deployment Complete: ${{ steps.previoustag.outputs.tag }} deployed to Budibase Pre-prod." + embed-title: ${{ steps.previoustag.outputs.tag }} \ No newline at end of file diff --git a/.github/workflows/release-master.yml b/.github/workflows/release-master.yml index 7d113a3719..e8bd2fddd4 100644 --- a/.github/workflows/release-master.yml +++ b/.github/workflows/release-master.yml @@ -119,6 +119,9 @@ jobs: env: RELEASE_VERSION: ${{ steps.previoustag.outputs.tag }} + deploy-to-legacy-preprod-env: + uses: ./.github/workflows/deploy-preprod.yml + secrets: inherit # Trigger deploy to new EKS preprod environment trigger-deploy-to-preprod-env: