Fix lots of bugs
This commit is contained in:
parent
6a49957eec
commit
53fa74b61d
|
@ -312,8 +312,8 @@ test-screen-client:
|
|||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec usermanager-api-dev python manage.py recreate_db
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec usermanager-api-dev python manage.py seed_db
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec usermanager-api python manage.py recreate_db
|
||||
- docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec usermanager-api python manage.py seed_db
|
||||
- export API_IMAGE=$SUBSCRIPTION_TEST_IMAGE_NAME
|
||||
- docker compose -f subscription-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down
|
||||
- docker compose -f subscription-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull
|
||||
|
|
|
@ -1,29 +1,28 @@
|
|||
version: '3.8'
|
||||
name: fids_usermanager_dev
|
||||
name: fids-auth-dev
|
||||
|
||||
services:
|
||||
usermanager-api-dev:
|
||||
auth-api:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: usermanager-api
|
||||
container_name: fids_usermanager_api_dev
|
||||
service: auth-api
|
||||
container_name: fids-auth-dev_auth-api
|
||||
environment:
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@usermanager-db-dev/${POSTGRES_DB}
|
||||
- DATABASE_TEST_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@usermanager-db-dev/${POSTGRES_DB_TEST}
|
||||
- DATABASE_TEST_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@auth-db/${POSTGRES_DB_TEST}
|
||||
depends_on:
|
||||
usermanager-db-dev:
|
||||
auth-db:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- auth-dev
|
||||
- auth
|
||||
|
||||
usermanager-db-dev:
|
||||
auth-db:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: usermanager-db
|
||||
container_name: fids_usermanager_db_dev
|
||||
service: auth-db
|
||||
container_name: fids-auth-dev_auth-db
|
||||
networks:
|
||||
- auth-dev
|
||||
- auth
|
||||
|
||||
networks:
|
||||
auth-dev:
|
||||
auth:
|
||||
driver: bridge
|
||||
|
|
|
@ -1,23 +1,21 @@
|
|||
version: '3.8'
|
||||
name: fids_usermanager
|
||||
name: fids-auth
|
||||
|
||||
services:
|
||||
usermanager-api:
|
||||
auth-api:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: usermanager-api
|
||||
container_name: fids_usermanager_api
|
||||
service: auth-api
|
||||
depends_on:
|
||||
usermanager-db:
|
||||
auth-db:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- auth
|
||||
|
||||
usermanager-db:
|
||||
container_name: fids_usermanager_db
|
||||
auth-db:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: usermanager-db
|
||||
service: auth-db
|
||||
volumes:
|
||||
- flights_db:/var/lib/postgresql/data
|
||||
networks:
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
usermanager-api:
|
||||
auth-api:
|
||||
image: ${API_IMAGE}
|
||||
container_name: fids-auth_auth-api
|
||||
healthcheck:
|
||||
test: ["CMD", "nc", "-vz", "-w1", "localhost", "5000"]
|
||||
interval: 2s
|
||||
|
@ -12,13 +13,14 @@ services:
|
|||
environment:
|
||||
- TEST_TARGET=${TEST_TARGET}
|
||||
- PORT=5000
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@usermanager-db/${POSTGRES_DB}
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@auth-db/${POSTGRES_DB}
|
||||
- APP_SETTINGS=${APP_SETTINGS}
|
||||
|
||||
usermanager-db:
|
||||
auth-db:
|
||||
build:
|
||||
context: ./db
|
||||
dockerfile: Dockerfile
|
||||
container_name: fids-auth_auth-db
|
||||
healthcheck:
|
||||
test: psql postgres --command "select 1" -U ${POSTGRES_USER}
|
||||
interval: 2s
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
version: '3.8'
|
||||
name: fids_browser_dev
|
||||
name: fids-browser-dev
|
||||
|
||||
services:
|
||||
browser-client-dev:
|
||||
browser-client:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: browser-client
|
||||
container_name: fids_browser_client_dev
|
||||
container_name: fids-browser-dev_browser-client
|
||||
network_mode: host
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
version: '3.8'
|
||||
name: fids_browser
|
||||
name: fids-browser
|
||||
|
||||
services:
|
||||
browser-client:
|
||||
|
|
|
@ -2,7 +2,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
browser-client:
|
||||
container_name: fids_browser_client
|
||||
container_name: fids-browser_browser-client
|
||||
image: ${CLIENT_IMAGE}
|
||||
environment:
|
||||
- TEST_TARGET=${TEST_TARGET}
|
||||
|
|
|
@ -1,32 +1,32 @@
|
|||
version: '3.8'
|
||||
name: fids_flights_dev
|
||||
name: fids-flights-dev
|
||||
|
||||
services:
|
||||
flights-api-dev:
|
||||
flights-api:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: flights-api
|
||||
container_name: fids_flights_api_dev
|
||||
container_name: fids-flights-dev_flights-api
|
||||
environment:
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@flights-api-db-dev/${POSTGRES_DB}
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@flights-db/${POSTGRES_DB}
|
||||
depends_on:
|
||||
flights-api-db-dev:
|
||||
flights-db:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- flights-dev
|
||||
- subscriptions-dev
|
||||
- flights
|
||||
- subscriptions
|
||||
|
||||
flights-api-db-dev:
|
||||
flights-db:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: flights-api-db
|
||||
container_name: fids_flights_db_dev
|
||||
service: flights-db
|
||||
container_name: fids-flights-dev_flights-db
|
||||
networks:
|
||||
- flights-dev
|
||||
- flights
|
||||
|
||||
networks:
|
||||
subscriptions-dev:
|
||||
name: subscription-domain_subscriptions-dev
|
||||
subscriptions:
|
||||
name: fids-subs-dev_subscriptions
|
||||
external: true
|
||||
flights-dev:
|
||||
flights:
|
||||
driver: bridge
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
version: '3.8'
|
||||
name: fids_flights
|
||||
name: fids-flights
|
||||
|
||||
services:
|
||||
flights-api:
|
||||
|
@ -24,7 +24,7 @@ services:
|
|||
|
||||
networks:
|
||||
subscriptions:
|
||||
name: subscription-domain_subscriptions
|
||||
name: fids-subs_subscriptions
|
||||
external: true
|
||||
flights:
|
||||
driver: bridge
|
||||
|
|
|
@ -2,7 +2,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
flights-api:
|
||||
container_name: fids_flights_api
|
||||
container_name: fids-flights_flights-api
|
||||
image: ${API_IMAGE}
|
||||
healthcheck:
|
||||
test: ["CMD", "nc", "-vz", "-w1", "localhost", "5000"]
|
||||
|
@ -13,11 +13,11 @@ services:
|
|||
environment:
|
||||
- TEST_TARGET=${TEST_TARGET}
|
||||
- PORT=5000
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@flights-api-db/${POSTGRES_DB}
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@flights-db/${POSTGRES_DB}
|
||||
- APP_SETTINGS=${APP_SETTINGS}
|
||||
|
||||
flights-api-db:
|
||||
container_name: fids_flights_db
|
||||
flights-db:
|
||||
container_name: fids-flights_flights-db
|
||||
build:
|
||||
context: ./db
|
||||
dockerfile: Dockerfile
|
||||
|
|
|
@ -1 +1,8 @@
|
|||
API_MESSAGES = "http://fids_subscriptions_api:5000/messages"
|
||||
import os
|
||||
|
||||
TEST_TARGET = os.getenv("TEST_TARGET")
|
||||
|
||||
if TEST_TARGET == "INTEGRATION":
|
||||
API_MESSAGES = "http://fids-subs-dev_subscriptions-api:5000/messages"
|
||||
else:
|
||||
API_MESSAGES = "http://fids-subs_subscriptions-api:5000/messages"
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
version: '3.8'
|
||||
name: fids_gateway_dev
|
||||
name: fids-gateway-dev
|
||||
|
||||
services:
|
||||
api-gateway-dev:
|
||||
api-gw:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: api-gateway
|
||||
container_name: fids_api_gateway_dev
|
||||
service: api-gw
|
||||
container_name: fids-gateway-dev_api-gw
|
||||
ports:
|
||||
- 5001:5002
|
||||
networks:
|
||||
- auth-dev
|
||||
- flights-dev
|
||||
- gateway-dev
|
||||
- subscriptions-dev
|
||||
- auth
|
||||
- flights
|
||||
- gateway
|
||||
- subscriptions
|
||||
|
||||
networks:
|
||||
auth-dev:
|
||||
name: auth-domain_auth-dev
|
||||
auth:
|
||||
name: fids-auth-dev_auth
|
||||
external: true
|
||||
flights-dev:
|
||||
name: flights-domain_flights-dev
|
||||
flights:
|
||||
name: fids-flights-dev_flights
|
||||
external: true
|
||||
subscriptions-dev:
|
||||
name: subscription-domain_subscriptions-dev
|
||||
subscriptions:
|
||||
name: fids-subs-dev_subscriptions
|
||||
external: true
|
||||
gateway-dev:
|
||||
gateway:
|
||||
driver: bridge
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
version: '3.8'
|
||||
name: fids_gateway
|
||||
name: fids-gateway-dev
|
||||
|
||||
services:
|
||||
api-gateway:
|
||||
api-gw:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: api-gateway
|
||||
service: api-gw
|
||||
ports:
|
||||
- 5000:5002
|
||||
networks:
|
||||
|
@ -21,13 +21,13 @@ services:
|
|||
|
||||
networks:
|
||||
auth:
|
||||
name: auth-domain_auth
|
||||
name: fids-auth_auth
|
||||
external: true
|
||||
flights:
|
||||
name: flights-domain_flights
|
||||
name: fids-flights_flights
|
||||
external: true
|
||||
subscriptions:
|
||||
name: subscription-domain_subscriptions
|
||||
name: fids-subs_subscriptions
|
||||
external: true
|
||||
gateway:
|
||||
driver: bridge
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
api-gateway:
|
||||
container_name: fids_api_gateway
|
||||
api-gw:
|
||||
container_name: fids-gateway_api-gw
|
||||
image: ${API_IMAGE}
|
||||
healthcheck:
|
||||
test: ["CMD", "nc", "-vz", "-w1", "localhost", "5002"]
|
||||
|
|
|
@ -3,18 +3,18 @@ import os
|
|||
TEST_TARGET = os.getenv("TEST_TARGET")
|
||||
|
||||
if TEST_TARGET == "INTEGRATION":
|
||||
API_USERS = "http://fids_usermanager_api_dev:5000/users"
|
||||
API_FLIGHTS = "http://fids_flights_api_dev:5000/flights"
|
||||
API_AUTH = "http://fids_usermanager_api_dev:5000/auth"
|
||||
API_USERS = "http://fids-auth-dev_auth-api:5000/users"
|
||||
API_FLIGHTS = "http://fids-flights-dev_flights-api:5000/flights"
|
||||
API_AUTH = "http://fids-auth-dev_auth-api:5000/auth"
|
||||
LOGS_UPD = "udp://fids_logstash:12201"
|
||||
API_SUBSCRIPTIONS = "http://fids_subscriptions_api_dev:5000/subscriptions"
|
||||
API_NOTIFICATIONS = "http://fids_subscriptions_api_dev:5000/notifications"
|
||||
API_MESSAGES = "http://fids_subscriptions_api_dev:5000/messages"
|
||||
API_SUBSCRIPTIONS = "http://fids-subs-dev_subscriptions-api:5000/subscriptions"
|
||||
API_NOTIFICATIONS = "http://fids-subs-dev_subscriptions-api:5000/notifications"
|
||||
API_MESSAGES = "http://fids-subs-dev_subscriptions-api:5000/messages"
|
||||
else:
|
||||
API_USERS = "http://fids_usermanager_api:5000/users"
|
||||
API_FLIGHTS = "http://fids_flights_api:5000/flights"
|
||||
API_AUTH = "http://fids_usermanager_api:5000/auth"
|
||||
API_USERS = "http://fids-auth_auth-api:5000/users"
|
||||
API_FLIGHTS = "http://fids-flights_flights-api:5000/flights"
|
||||
API_AUTH = "http://fids-auth_auth-api:5000/auth"
|
||||
LOGS_UPD = "udp://fids_logstash:12201"
|
||||
API_SUBSCRIPTIONS = "http://fids_subscriptions_api:5000/subscriptions"
|
||||
API_NOTIFICATIONS = "http://fids_subscriptions_api:5000/notifications"
|
||||
API_MESSAGES = "http://fids_subscriptions_api:5000/messages"
|
||||
API_SUBSCRIPTIONS = "http://fids-subs_subscriptions-api:5000/subscriptions"
|
||||
API_NOTIFICATIONS = "http://fids-subs_subscriptions-api:5000/notifications"
|
||||
API_MESSAGES = "http://fids-subs_subscriptions-api:5000/messages"
|
||||
|
|
20
run.sh
20
run.sh
|
@ -1,19 +1,21 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
usage() {
|
||||
printf "$0 usage: \n -x: down\n -d \$DOMAIN: domain\n -t: tests\n" $0
|
||||
printf "$0 usage: \n -x: down\n -d \$DOMAIN: domain\n -t: tests\n -i integration\n" $0
|
||||
exit 0
|
||||
}
|
||||
|
||||
domain=
|
||||
down=
|
||||
tests=
|
||||
integration=
|
||||
|
||||
while getopts ":hd:xt" arg; do
|
||||
while getopts ":hd:xti" arg; do
|
||||
case $arg in
|
||||
x) down=Y ;;
|
||||
d) domain=${OPTARG} ;;
|
||||
t) tests=Y ;;
|
||||
i) integration=Y ;;
|
||||
h | *) usage ;;
|
||||
esac
|
||||
done
|
||||
|
@ -65,13 +67,19 @@ elif [ -n "$domain" ] && [ -z "$down" ]; then
|
|||
docker build $USER_MANAGER -f $USER_MANAGER/Dockerfile.test -t $USER/user-manager:test
|
||||
export API_IMAGE=$USER/user-manager:test
|
||||
docker compose -f auth-domain/docker-compose.dev.yml --env-file auth-domain/.env.dev down
|
||||
if [ -n "$integration" ]; then
|
||||
docker compose -f auth-domain/docker-compose.dev.yml --env-file auth-domain/.env.dev up -d
|
||||
docker compose -f auth-domain/docker-compose.dev.yml --env-file auth-domain/.env.dev exec auth-api python manage.py recreate_db
|
||||
docker compose -f auth-domain/docker-compose.dev.yml --env-file auth-domain/.env.dev exec auth-api python manage.py seed_db
|
||||
else
|
||||
docker compose -f auth-domain/docker-compose.dev.yml --env-file auth-domain/.env.dev up --abort-on-container-exit
|
||||
fi
|
||||
else
|
||||
export API_IMAGE=$USER/user-manager:prod
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod down
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod up -d
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec usermanager-api python manage.py recreate_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec usermanager-api python manage.py seed_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec auth-api python manage.py recreate_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec auth-api python manage.py seed_db
|
||||
fi
|
||||
;;
|
||||
'flights')
|
||||
|
@ -193,8 +201,8 @@ else
|
|||
export API_IMAGE=$USER/user-manager:prod
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod down
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod up -d
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec usermanager-api python manage.py recreate_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec usermanager-api python manage.py seed_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec auth-api python manage.py recreate_db
|
||||
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod exec auth-api python manage.py seed_db
|
||||
export API_IMAGE=slococo/subs-manager:prod
|
||||
docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.prod down
|
||||
docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.prod up -d
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
version: '3.8'
|
||||
name: fids_screen_dev
|
||||
name: fids-screen-dev
|
||||
|
||||
services:
|
||||
screens-client-dev:
|
||||
screen-client:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: screens-client
|
||||
container_name: fids_screens_client_dev
|
||||
service: screen-client
|
||||
container_name: fids-screen-dev_screen-client
|
||||
network_mode: host
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
version: '3.8'
|
||||
name: fids_screen
|
||||
name: fids-screen
|
||||
|
||||
services:
|
||||
screens-client:
|
||||
screen-client:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: screens-client
|
||||
service: screen-client
|
||||
network_mode: host
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
screens-client:
|
||||
container_name: fids_screens_client
|
||||
screen-client:
|
||||
container_name: fids-screen_screen-client
|
||||
image: ${CLIENT_IMAGE}
|
||||
environment:
|
||||
- TEST_TARGET=${TEST_TARGET}
|
||||
|
|
|
@ -1,28 +1,28 @@
|
|||
version: '3.8'
|
||||
name: fids_subscriptions_dev
|
||||
name: fids-subs-dev
|
||||
|
||||
services:
|
||||
subscriptions-api-dev:
|
||||
subscriptions-api:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: subscriptions-api
|
||||
container_name: fids_subscriptions_api_dev
|
||||
container_name: fids-subs-dev_subscriptions-api
|
||||
environment:
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@subscriptions-db-dev/${POSTGRES_DB}
|
||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@subscriptions-db/${POSTGRES_DB}
|
||||
depends_on:
|
||||
subscriptions-db-dev:
|
||||
subscriptions-db:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- subscriptions-dev
|
||||
- subscriptions
|
||||
|
||||
subscriptions-db-dev:
|
||||
subscriptions-db:
|
||||
extends:
|
||||
file: docker-template.yml
|
||||
service: subscriptions-db
|
||||
container_name: fids_subscriptions_db_dev
|
||||
container_name: fids-subs-dev_subscriptions-db
|
||||
networks:
|
||||
- subscriptions-dev
|
||||
- subscriptions
|
||||
|
||||
networks:
|
||||
subscriptions-dev:
|
||||
subscriptions:
|
||||
driver: bridge
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
version: '3.8'
|
||||
name: fids_subscriptions
|
||||
name: fids-subs
|
||||
|
||||
services:
|
||||
subscriptions-api:
|
||||
|
|
|
@ -2,7 +2,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
subscriptions-api:
|
||||
container_name: fids_subscriptions_api
|
||||
container_name: fids-subs_subscriptions-api
|
||||
image: ${API_IMAGE}
|
||||
healthcheck:
|
||||
test: ["CMD", "nc", "-vz", "-w1", "localhost", "5000"]
|
||||
|
@ -18,7 +18,7 @@ services:
|
|||
- TOKEN=${TOKEN}
|
||||
|
||||
subscriptions-db:
|
||||
container_name: fids_subscriptions_db
|
||||
container_name: fids-subs_subscriptions-db
|
||||
build:
|
||||
context: ./db
|
||||
dockerfile: Dockerfile
|
||||
|
|
Loading…
Reference in New Issue