-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile able to start from script file
- Loading branch information
Showing
4 changed files
with
120 additions
and
7 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,113 @@ | ||
--- | ||
name: stating | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
outputs: | ||
image: ${{ steps.export.outputs.image }} | ||
tag: ${{ steps.export.outputs.tag }} | ||
|
||
runs-on: ubuntu-latest | ||
env: | ||
image: cranecloud/monitoring-api | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install (Buildx) | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- id: meta | ||
name: Tag | ||
uses: docker/metadata-action@v3 | ||
with: | ||
flavor: | | ||
latest=true | ||
images: ${{ env.image }} | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=sha | ||
- name: Build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
context: . | ||
labels: ${{ steps.meta.outputs.labels }} | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
|
||
- id: export | ||
name: Export | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
const metadata = JSON.parse(`${{ steps.meta.outputs.json }}`) | ||
const fullUrl = metadata.tags.find((t) => t.includes(':sha-')) | ||
if (fullUrl == null) { | ||
core.error('Unable to find sha tag of image') | ||
} else { | ||
const tag = fullUrl.split(':')[1] | ||
core.setOutput('image', fullUrl) | ||
core.setOutput('tag', tag) | ||
} | ||
Microservice: | ||
name: Deploy (Microservice) | ||
|
||
needs: | ||
- Build | ||
|
||
runs-on: ubuntu-latest | ||
env: | ||
namespace: cranecloud-microservice | ||
image: cranecloud/monitoring-api | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- uses: azure/k8s-set-context@v1 | ||
with: | ||
kubeconfig: ${{ secrets.RENU_KUBECONFIG}} | ||
|
||
- name: Helm Release | ||
run: | | ||
helm upgrade --install --create-namespace \ | ||
monitoring-api ./helm/chart \ | ||
--values helm/values.micro.yaml \ | ||
--namespace $namespace \ | ||
--set image.tag="${{ needs.build.outputs.tag }}" \ | ||
--set environment.ADMIN_MYSQL_PASSWORD="${{ secrets.STAGING_ADMIN_MYSQL_PASSWORD }}" \ | ||
--set environment.ADMIN_PSQL_PASSWORD="${{ secrets.STAGING_ADMIN_PSQL_PASSWORD }}" \ | ||
--set environment.APP_MAIL_PASSWORD="${{ secrets.STAGING_APP_MAIL_PASSWORD }}" \ | ||
--set environment.DATABASE_URI="${{ secrets.MICROSERVICE_DATABASE_URI }}" \ | ||
--set environment.MONGO_URI="${{ secrets.STAGING_MONGO_URI }}" \ | ||
--set environment.FLASK_APP_SALT="${{ secrets.STAGING_FLASK_APP_SALT }}" \ | ||
--set environment.FLASK_APP_SECRET="${{ secrets.STAGING_FLASK_APP_SECRET }}" \ | ||
--set environment.GITHUB_CLIENT_SECRET="${{ secrets.STAGING_GITHUB_CLIENT_SECRET }}" \ | ||
--set environment.NEW_RELIC_LICENSE_KEY="${{ secrets.STAGING_NEW_RELIC_LICENSE_KEY }}" \ | ||
--set environment.KUBE_SERVICE_PORT="${{ secrets.STAGING_KUBE_SERVICE_PORT }}" \ | ||
--set environment.LOGGER_APP_URL="${{ secrets.MICROSERVICE_LOGGER_APP_URL }}" \ | ||
--timeout=300s | ||
- name: Monitor Rollout | ||
run: | | ||
kubectl rollout status deployment/cranecloud-backend --timeout=300s --namespace $namespace | ||
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#! /bin/bash | ||
#!/bin/bash | ||
|
||
# source .env | ||
|
||
# apply migrations onto db | ||
# flask db upgrade | ||
flask db upgrade | ||
|
||
# start server | ||
flask run --host=0.0.0.0 --port=50000 | ||
flask run --host=0.0.0.0 --port=5000 |