Files
doczyai-pipelines/bitbucket-pipelines.yml
T

185 lines
7.2 KiB
YAML
Raw Normal View History

2024-09-23 16:14:05 +01:00
definitions:
2024-09-23 16:28:03 +01:00
scripts:
- script: &aws-context
2024-09-23 18:12:26 +01:00
export AWS_ROLE_ARN=arn:aws:iam::$AWS_ACCOUNT_NO:role/$OIDC_ROLE;
2024-09-27 17:36:04 +01:00
export AWS_ROLE_SESSION_NAME=$OIDC_ROLE;
2024-09-23 16:28:03 +01:00
export AWS_WEB_IDENTITY_TOKEN_FILE=$(pwd)/web-identity-token;
echo $BITBUCKET_STEP_OIDC_TOKEN > $(pwd)/web-identity-token;
export AWS_ACCESS_KEY_ID=$(echo $STS_OUTPUT | jq -r '.Credentials.AccessKeyId');
export AWS_SECRET_ACCESS_KEY=$(echo $STS_OUTPUT | jq -r '.Credentials.SecretAccessKey');
export AWS_SECURITY_TOKEN=$(echo $STS_OUTPUT | jq -r '.Credentials.SessionToken');
export AWS_REGION='us-east-2';
2024-09-27 17:22:07 +01:00
aws sts get-caller-identity;
steps: &deployment-plan-steps
- step:
name: Plan devops-pipeline
image: hugree/bitbucket-aws-python38-tf154:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py plan --environment=$ENVIRONMENT --module=devops-pipeline/other-resources
- step:
name: Plan textract-pipeline
image: hugree/terraform-with-snowsql:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py plan --environment=$ENVIRONMENT --module=textract-pipeline/terraform
- step:
name: Plan streamlit-server
image: hugree/bitbucket-aws-python38-tf154:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py plan --environment=$ENVIRONMENT --module=streamlit-server
# - step:
# name: Plan Snowflake Changes
# image: python:3.7
# size: 2x
# script:
# - python -m pip install --upgrade pip
# - pip install snowflake-connector-python
# - pip install schemachange --upgrade
# - schemachange -a $SNOWFLAKE_ACCOUNT -u $SNOWFLAKE_USER -r $SNOWFLAKE_ROLE -w $SNOWFLAKE_WAREHOUSE -d $SNOWFLAKE_DATABASE -c $SNOWFLAKE_DATABASE.SCHEMACHANGE.CHANGE_HISTORY --create-change-history-table -v
# caches:
# - pip
- step:
image: hugree/terraform-with-snowsql:latest
name: Plan Snowsql
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- IS_DEPLOY_ALL=true python terraform.py plan --environment=$ENVIRONMENT --module=textract-pipeline/terraform --apply-extra-args="-target=null_resource.snowsql_client_create"
# - step:
# image: python:3.8
# name: "Deploy streamlit to EC2"
# oidc: true
# script:
# - python -m pip install --upgrade pip
# - apt-get update && apt-get install -y jq git
# - pip install awscli
# - *aws-context
# - >-
# aws ssm send-command --document-name "AWS-RunShellScript" --instance-ids $INSTANCE_ID_TF --region $AWS_DEFAULT_REGION --parameters commands='[
# "sudo -u ubuntu -i <<EOF",
# "export HOME=/home/ubuntu",
# "git config --global --add safe.directory /home/ubuntu/doczy.ai",
# "if [ -d /home/ubuntu/doczy.ai ]; then cd /home/ubuntu/doczy.ai && git fetch && git pull; else cd /home/ubuntu && git clone git@bitbucket.org:aarete/doczy.ai.git; fi",
# "EOF"
# ]'
2024-09-27 17:14:05 +01:00
steps: &deployment-steps
2024-09-27 17:54:20 +01:00
- step:
name: Apply devops-pipeline
image: hugree/bitbucket-aws-python38-tf154:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py apply --environment=$ENVIRONMENT --module=devops-pipeline/other-resources
- step:
name: Apply textract-pipeline
image: hugree/terraform-with-snowsql:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py apply --environment=$ENVIRONMENT --module=textract-pipeline/terraform
- step:
name: Apply streamlit-server
image: hugree/bitbucket-aws-python38-tf154:latest
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- python terraform.py apply --environment=$ENVIRONMENT --module=streamlit-server
2024-09-27 17:14:05 +01:00
- step:
name: "Deploy Snowflake Changes"
image: python:3.7
size: 2x
script:
- python -m pip install --upgrade pip
- pip install snowflake-connector-python
- pip install schemachange --upgrade
- schemachange -a $SNOWFLAKE_ACCOUNT -u $SNOWFLAKE_USER -r $SNOWFLAKE_ROLE -w $SNOWFLAKE_WAREHOUSE -d $SNOWFLAKE_DATABASE -c $SNOWFLAKE_DATABASE.SCHEMACHANGE.CHANGE_HISTORY --create-change-history-table -v
caches:
- pip
#condition:
# changesets:
# includePaths:
# - snowflake/**/*
# - snowflake/**/**/*
# - snowflake/**/**/**/*
2024-09-27 17:54:20 +01:00
- step:
image: hugree/terraform-with-snowsql:latest
name: Run Snowsql
oidc: true
script:
- *aws-context
- pip install -r requirements.txt
- IS_DEPLOY_ALL=true python terraform.py apply --environment=$ENVIRONMENT --module=textract-pipeline/terraform --apply-extra-args="-target=null_resource.snowsql_client_create"
2024-09-27 17:14:05 +01:00
- step:
image: python:3.8
name: "Deploy streamlit to EC2"
oidc: true
script:
- python -m pip install --upgrade pip
- apt-get update && apt-get install -y jq git
- pip install awscli
- *aws-context
- >-
aws ssm send-command --document-name "AWS-RunShellScript" --instance-ids $INSTANCE_ID_TF --region $AWS_DEFAULT_REGION --parameters commands='[
"sudo -u ubuntu -i <<EOF",
"export HOME=/home/ubuntu",
"git config --global --add safe.directory /home/ubuntu/doczy.ai",
"if [ -d /home/ubuntu/doczy.ai ]; then cd /home/ubuntu/doczy.ai && git fetch && git pull; else cd /home/ubuntu && git clone git@bitbucket.org:aarete/doczy.ai.git; fi",
"EOF"
]'
#condition:
# changesets:
# includePaths:
# - streamlit/*
# - streamlit/**/*
2024-09-23 16:14:05 +01:00
2024-09-23 15:39:28 +01:00
pipelines:
2024-09-30 12:25:32 +01:00
default:
- step:
name: Lint the code
image: hugree/bitbucket-aws-python38-tf154:latest
script:
- pip install -r dev-requirements.txt
- python -m black --check .
2024-09-23 16:28:03 +01:00
branches:
2024-09-30 15:42:46 +01:00
main:
2024-09-24 17:39:07 +01:00
- step:
name: Build and Test
2024-09-24 17:44:21 +01:00
script:
- echo Build and test pipeline will go here
2024-09-27 17:14:05 +01:00
- stage:
2024-09-27 17:15:47 +01:00
name: deployment-dev
deployment: development
trigger: automatic
steps: *deployment-steps
- stage:
name: deployment-plan-uat
deployment: uat
trigger: manual
steps: *deployment-plan-steps
2024-09-27 17:14:05 +01:00
- stage:
2024-09-27 17:15:47 +01:00
name: deployment-uat
2024-09-27 17:16:34 +01:00
deployment: uat
2024-09-27 17:15:47 +01:00
trigger: manual
steps: *deployment-steps
- stage:
name: deployment-plan-prod
deployment: production
trigger: manual
steps: *deployment-plan-steps
2024-09-27 17:14:05 +01:00
- stage:
2024-09-27 17:15:47 +01:00
name: deployment-prod
deployment: production
trigger: manual
steps: *deployment-steps