Compare commits

..

5 Commits
lab6 ... master

Author SHA1 Message Date
b52025e597 demo commit
All checks were successful
build-and-deploy-prod / build-cc (push) Successful in 5s
build-and-deploy-prod / build-hm (push) Successful in 6s
build-and-deploy-prod / build-map (push) Successful in 6s
build-and-deploy-prod / deploy-all (push) Successful in 1s
2025-05-28 21:20:47 +03:00
ca6c79428c commit
All checks were successful
build-and-deploy-prod / build-cc (push) Successful in 5s
build-and-deploy-prod / build-hm (push) Successful in 6s
build-and-deploy-prod / build-map (push) Successful in 6s
build-and-deploy-prod / deploy-all (push) Successful in 1s
2025-05-28 20:55:12 +03:00
01ef30678d improve handling of several environments
All checks were successful
build-and-deploy-prod / build-cc (push) Successful in 6s
build-and-deploy-prod / build-hm (push) Successful in 7s
build-and-deploy-prod / build-map (push) Successful in 7s
build-and-deploy-prod / deploy-all (push) Successful in 0s
2025-05-28 20:17:33 +03:00
03f0b75d63 improve handling of several environments 2025-05-28 20:16:12 +03:00
0374b173c8 add files 2025-05-28 19:45:22 +03:00
7 changed files with 27 additions and 17 deletions

View File

@ -2,7 +2,8 @@ name: build-and-deploy-prod
on: on:
push: push:
- lab6 branches:
- master
workflow_dispatch: workflow_dispatch:
jobs: jobs:
@ -21,14 +22,14 @@ jobs:
git init git init
git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4 git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4
git fetch gitea git fetch gitea
git checkout origin/master git checkout gitea/master
- name: Build container - name: Build container
shell: sh shell: sh
run: | run: |
docker build . -f Dockerfile-cc -t 10.5.1.10:5000/prod/cc docker build . -f Dockerfile-cc -t 10.5.1.10:5000/prod/cc
- name: Push container - name: Push container
shell: sh shell: sh
run: \ run: |
docker push 10.5.1.10:5000/prod/cc docker push 10.5.1.10:5000/prod/cc
build-hm: build-hm:
@ -46,14 +47,14 @@ jobs:
git init git init
git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4 git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4
git fetch gitea git fetch gitea
git checkout origin/master git checkout gitea/master
- name: Build container - name: Build container
shell: sh shell: sh
run: | run: |
docker build . -f Dockerfile-hm -t 10.5.1.10:5000/prod/hm docker build . -f Dockerfile-hm -t 10.5.1.10:5000/prod/hm
- name: Push container - name: Push container
shell: sh shell: sh
run: \ run: |
docker push 10.5.1.10:5000/prod/hm docker push 10.5.1.10:5000/prod/hm
build-map: build-map:
@ -71,14 +72,14 @@ jobs:
git init git init
git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4 git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4
git fetch gitea git fetch gitea
git checkout origin/master git checkout gitea/master
- name: Build container - name: Build container
shell: sh shell: sh
run: | run: |
docker build . -f Dockerfile-map -t 10.5.1.10:5000/prod/map docker build . -f Dockerfile-map -t 10.5.1.10:5000/prod/map
- name: Push container - name: Push container
shell: sh shell: sh
run: \ run: |
docker push 10.5.1.10:5000/prod/map docker push 10.5.1.10:5000/prod/map
deploy-all: deploy-all:
@ -89,8 +90,11 @@ jobs:
- build-map - build-map
steps: steps:
- run: | - run: |
ssh -i prod-key root@10.5.1.11 "sh -c 'git init && ssh -i ~/prod-key root@10.5.1.11 "sh -c 'rm -rf devops-lab4 ; git clone http://10.1.1.1:3000/hasslesstech/devops-lab4 && cd devops-lab4 &&
git remote add gitea http://10.1.1.1:3000/hasslesstech/devops-lab4 && docker-compose -f docker-compose-prod.yaml up -d'"
git fetch gitea &&
git checkout -f origin/master &&
docker-compose up -d -f docker-compose-prod.yaml'"

View File

@ -67,3 +67,6 @@ CMD sh -c "openrc default ; \
rc-service hive-hm start ; \ rc-service hive-hm start ; \
rc-service hive-map start ; \ rc-service hive-map start ; \
exec sh" exec sh"

View File

@ -31,7 +31,7 @@ services:
image: 10.5.1.10:5000/dev/map image: 10.5.1.10:5000/dev/map
restart: always restart: always
volumes: volumes:
- ./map/config.json:/usr/share/nginx/html/config.json:ro - ./map/config-dev.json:/usr/share/nginx/html/config.json:ro
ports: ports:
- 80:80 - 80:80

View File

@ -31,7 +31,7 @@ services:
image: 10.5.1.10:5000/prod/map image: 10.5.1.10:5000/prod/map
restart: always restart: always
volumes: volumes:
- ./map/config.json:/usr/share/nginx/html/config.json:ro - ./map/config-prod.json:/usr/share/nginx/html/config.json:ro
ports: ports:
- 80:80 - 80:80

3
map/config-dev.json Normal file
View File

@ -0,0 +1,3 @@
{
"API": "http://10.5.1.12:8080/api/v1/client"
}

3
map/config-prod.json Normal file
View File

@ -0,0 +1,3 @@
{
"API": "http://10.5.1.11:8080/api/v1/client"
}

View File

@ -1,3 +0,0 @@
{
"API": "http://10.1.1.2:8080/api/v1/client"
}