-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from opencrvs/develop
Merge Release-v1.3.0 into master
- Loading branch information
Showing
314 changed files
with
37,478 additions
and
35,175 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
name: Deploy(production) | ||
run-name: Deploy to ${{ github.event.inputs.environment }} core=${{ github.event.inputs.core-image-tag }} country config=${{ github.event.inputs.countryconfig-image-tag }} | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
type: choice | ||
description: Environment to deploy to | ||
required: true | ||
default: 'production' | ||
options: | ||
- production | ||
core-image-tag: | ||
description: Core DockerHub image tag | ||
required: true | ||
default: 'v1.3.0' | ||
countryconfig-image-tag: | ||
description: Your Country Config DockerHub image tag | ||
required: true | ||
deploy-script-environment: | ||
type: choice | ||
description: Deploy script environment | ||
required: true | ||
default: 'production' | ||
options: | ||
- production | ||
- demo | ||
jobs: | ||
deploy: | ||
environment: ${{ github.event.inputs.environment }} | ||
runs-on: ubuntu-20.04 | ||
timeout-minutes: 60 | ||
strategy: | ||
matrix: | ||
node-version: [16.20.0] | ||
steps: | ||
- name: Clone core | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
repository: 'opencrvs/opencrvs-core' | ||
path: './opencrvs-core' | ||
- name: Clone country config resource package | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
path: './${{ github.event.repository.name }}' | ||
|
||
- name: Checkout country branch | ||
run: | | ||
cd ${{ github.event.repository.name }} | ||
git checkout ${{ github.event.inputs.countryconfig-image-tag }} | ||
cd ../ | ||
- name: Checkout core branch | ||
run: | | ||
cd opencrvs-core | ||
git checkout ${{ github.event.inputs.core-image-tag }} | ||
- name: Install SSH Key | ||
uses: shimataro/ssh-key-action@v2 | ||
with: | ||
key: ${{ secrets.SSH_KEY }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Wait for images to be available | ||
run: | | ||
while true; do | ||
if docker manifest inspect opencrvs/ocrvs-auth:${{ github.event.inputs.core-image-tag }}; then | ||
break | ||
fi | ||
sleep 10 | ||
done | ||
while true; do | ||
if docker manifest inspect opencrvs/ocrvs-farajaland:${{ github.event.inputs.countryconfig-image-tag }}; then | ||
break | ||
fi | ||
sleep 10 | ||
done | ||
|
||
- name: Deploy to ${{ github.event.inputs.environment }} | ||
env: | ||
DOMAIN: ${{ vars.DOMAIN }} | ||
REPLICAS: ${{ vars.REPLICAS }} | ||
SMTP_PORT: ${{ secrets.SMTP_PORT }} | ||
SMTP_HOST: ${{ secrets.SMTP_HOST }} | ||
SMTP_USERNAME: ${{ secrets.SMTP_USERNAME }} | ||
SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }} | ||
ALERT_EMAIL: ${{ secrets.ALERT_EMAIL }} | ||
DOCKERHUB_ACCOUNT: ${{ secrets.DOCKERHUB_ACCOUNT }} | ||
DOCKERHUB_REPO: ${{ secrets.DOCKERHUB_REPO }} | ||
KIBANA_USERNAME: ${{ secrets.KIBANA_USERNAME }} | ||
KIBANA_PASSWORD: ${{ secrets.KIBANA_PASSWORD }} | ||
MONGODB_ADMIN_USER: ${{ secrets.MONGODB_ADMIN_USER }} | ||
MONGODB_ADMIN_PASSWORD: ${{ secrets.MONGODB_ADMIN_PASSWORD }} | ||
ELASTICSEARCH_SUPERUSER_PASSWORD: ${{ secrets.ELASTICSEARCH_SUPERUSER_PASSWORD }} | ||
MINIO_ROOT_USER: ${{ secrets.MINIO_ROOT_USER }} | ||
MINIO_ROOT_PASSWORD: ${{ secrets.MINIO_ROOT_PASSWORD }} | ||
EMAIL_API_KEY: ${{ secrets.EMAIL_API_KEY }} | ||
INFOBIP_SENDER_ID: ${{ secrets.INFOBIP_SENDER_ID }} | ||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | ||
INFOBIP_GATEWAY_ENDPOINT: ${{ secrets.INFOBIP_GATEWAY_ENDPOINT }} | ||
INFOBIP_API_KEY: ${{ secrets.INFOBIP_API_KEY }} | ||
SENDER_EMAIL_ADDRESS: ${{ secrets.SENDER_EMAIL_ADDRESS }} | ||
SUPER_USER_PASSWORD: ${{ secrets.SUPER_USER_PASSWORD }} | ||
run: | | ||
cd ./${{ github.event.repository.name }} | ||
yarn deploy --clear_data=no --environment=${{ github.event.inputs.deploy-script-environment }} --host=${{ env.DOMAIN }} --version=${{ github.event.inputs.core-image-tag }} --country_config_version=${{ github.event.inputs.countryconfig-image-tag }} --country_config_path=../${{ github.event.repository.name }} --replicas=${{ env.REPLICAS }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Publish release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch_name: | ||
description: Branch to build from | ||
default: develop | ||
required: true | ||
release_version: | ||
description: Release version number | ||
required: true | ||
|
||
jobs: | ||
base: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: trstringer/manual-approval@v1 | ||
with: | ||
secret: ${{ github.TOKEN }} | ||
approvers: euanmillar,rikukissa | ||
minimum-approvals: 1 | ||
issue-title: "Release: ${{ github.event.inputs.release_version }}" | ||
issue-body: "Please approve or deny the publishing of release: ${{ github.event.inputs.release_version }} to Dockerhub" | ||
exclude-workflow-initiator-as-approver: false | ||
- uses: actions/checkout@v2 | ||
if: github.event_name == 'workflow_dispatch' | ||
with: | ||
ref: '${{ github.event.inputs.branch_name }}' | ||
- uses: actions/checkout@v2 | ||
if: github.event_name == 'push' | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Push image | ||
env: | ||
DOCKERHUB_ACCOUNT: ${{ secrets.DOCKERHUB_ACCOUNT }} | ||
DOCKERHUB_REPO: ${{ secrets.DOCKERHUB_REPO }} | ||
run: | | ||
export COUNTRY_CONFIG_VERSION=${{ github.event.inputs.release_version }} | ||
echo "Publishing a Docker image with a tag $COUNTRY_CONFIG_VERSION" | ||
bash build-and-push.sh && unset COUNTRY_CONFIG_VERSION |
Oops, something went wrong.