added fix
This commit is contained in:
parent
261ea5d612
commit
e12a424ab4
3 changed files with 32 additions and 68 deletions
32
.github/workflows/cd.yaml
vendored
32
.github/workflows/cd.yaml
vendored
|
|
@ -58,19 +58,19 @@ jobs:
|
|||
outputs:
|
||||
promethai_docker_tag_backend: ${{ steps.export-promethai-docker-tag.outputs.promethai_docker_tag_backend }}
|
||||
|
||||
apply_tf:
|
||||
name: Trigger terraform apply workflow
|
||||
runs-on: ubuntu-latest
|
||||
needs: publish_docker_to_ecr
|
||||
steps:
|
||||
- name: TF apply workflow triggers step
|
||||
uses: actions/github-script@v6
|
||||
with:
|
||||
github-token: ${{ secrets.PAT_FOR_CROSS_REPOS_CICD_TRIGGERING }}
|
||||
script: |
|
||||
await github.rest.actions.createWorkflowDispatch({
|
||||
owner: 'topoteretes',
|
||||
repo: 'PromethAI-Infra',
|
||||
workflow_id: 'terraform.apply.yml',
|
||||
ref: 'main'
|
||||
})
|
||||
# apply_tf:
|
||||
# name: Trigger terraform apply workflow
|
||||
# runs-on: ubuntu-latest
|
||||
# needs: publish_docker_to_ecr
|
||||
# steps:
|
||||
# - name: TF apply workflow triggers step
|
||||
# uses: actions/github-script@v6
|
||||
# with:
|
||||
# github-token: ${{ secrets.PAT_FOR_CROSS_REPOS_CICD_TRIGGERING }}
|
||||
# script: |
|
||||
# await github.rest.actions.createWorkflowDispatch({
|
||||
# owner: 'topoteretes',
|
||||
# repo: 'PromethAI-Infra',
|
||||
# workflow_id: 'terraform.apply.yml',
|
||||
# ref: 'main'
|
||||
# })
|
||||
|
|
|
|||
32
.github/workflows/cd_prd.yaml
vendored
32
.github/workflows/cd_prd.yaml
vendored
|
|
@ -81,19 +81,19 @@ jobs:
|
|||
outputs:
|
||||
promethai_docker_tag_backend: ${{ steps.export-promethai-docker-tag.outputs.promethai_docker_tag_backend }}
|
||||
|
||||
apply_tf:
|
||||
name: Trigger terraform apply workflow
|
||||
runs-on: ubuntu-latest
|
||||
needs: publish_docker_to_ecr
|
||||
steps:
|
||||
- name: TF apply workflow triggers step
|
||||
uses: actions/github-script@v6
|
||||
with:
|
||||
github-token: ${{ secrets.PAT_FOR_CROSS_REPOS_CICD_TRIGGERING }}
|
||||
script: |
|
||||
await github.rest.actions.createWorkflowDispatch({
|
||||
owner: 'topoteretes',
|
||||
repo: 'PromethAI-Infra',
|
||||
workflow_id: 'terraform.apply.yml',
|
||||
ref: 'main'
|
||||
})
|
||||
# apply_tf:
|
||||
# name: Trigger terraform apply workflow
|
||||
# runs-on: ubuntu-latest
|
||||
# needs: publish_docker_to_ecr
|
||||
# steps:
|
||||
# - name: TF apply workflow triggers step
|
||||
# uses: actions/github-script@v6
|
||||
# with:
|
||||
# github-token: ${{ secrets.PAT_FOR_CROSS_REPOS_CICD_TRIGGERING }}
|
||||
# script: |
|
||||
# await github.rest.actions.createWorkflowDispatch({
|
||||
# owner: 'topoteretes',
|
||||
# repo: 'PromethAI-Infra',
|
||||
# workflow_id: 'terraform.apply.yml',
|
||||
# ref: 'main'
|
||||
# })
|
||||
|
|
|
|||
|
|
@ -1,36 +0,0 @@
|
|||
set -euo pipefail
|
||||
|
||||
AWS_REGION=${region:-eu-west-1}
|
||||
AWS_DEPLOYMENT_ACCOUNT=${account:-463722570299}
|
||||
AWS_REPOSITORY=${repo:-"${AWS_DEPLOYMENT_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com"}
|
||||
|
||||
STAGE=${stage:-"dev"}
|
||||
SHA_SHORT="$(git rev-parse --short HEAD)"
|
||||
CUR_DATE="$(date +%Y%m%d%H%M%S)"
|
||||
VERSION="$STAGE-$CUR_DATE-$SHA_SHORT"
|
||||
IMAGE_NAME=${image_name:-promethai-${STAGE}-promethai-backend-memory}
|
||||
|
||||
REPO_NAME="${AWS_REPOSITORY}/${IMAGE_NAME}"
|
||||
FULL_IMAGE_NAME="${REPO_NAME}:${VERSION}"
|
||||
APP_DIR=${app_dir:-"."}
|
||||
|
||||
PUBLISH=${publish:-false}
|
||||
|
||||
echo "Building docker image ${FULL_IMAGE_NAME} located in dir ${app_dir}"
|
||||
|
||||
pushd "${APP_DIR}" &&
|
||||
docker buildx build --platform linux/amd64 \
|
||||
--build-arg STAGE=${STAGE} \
|
||||
-t "${FULL_IMAGE_NAME}" . &&
|
||||
echo "${VERSION}" >/tmp/.DOCKER_IMAGE_VERSION &&
|
||||
echo "Successfully built docker image ${FULL_IMAGE_NAME}"
|
||||
|
||||
if [ "${PUBLISH}" = true ]; then
|
||||
echo "Pushing docker image ${FULL_IMAGE_NAME} to ECR repository to AWS account ${AWS_DEPLOYMENT_ACCOUNT}"
|
||||
if [ "${PUBLISH}" = true ]; then
|
||||
echo "logging in"
|
||||
aws ecr get-login-password --region "${AWS_REGION}" | docker login --username AWS --password-stdin "${AWS_REPOSITORY}"
|
||||
fi
|
||||
docker push "${FULL_IMAGE_NAME}" &&
|
||||
echo "Successfully pushed docker image ${FULL_IMAGE_NAME} to ECR repository"
|
||||
fi
|
||||
Loading…
Add table
Reference in a new issue