-
Notifications
You must be signed in to change notification settings - Fork 1
/
reputation_tracker.yaml
103 lines (103 loc) · 3.27 KB
/
reputation_tracker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
services:
reputation-tracker-install:
image: ${REPUTATION_TRACKER_REGISTRY:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/reputation_tracker}:${REPUTATION_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- apps
- hafbe
- reputation-tracker-setup
environment:
POSTGRES_HOST: haf
networks:
haf-network:
command:
- install_app
- --schema=${REPTRACKER_SCHEMA:-hafbe_rep}
- --swagger-url=${PUBLIC_HOSTNAME}
depends_on:
semaphore:
condition: service_started
reputation-tracker-uninstall:
image: ${REPUTATION_TRACKER_REGISTRY:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/reputation_tracker}:${REPUTATION_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- reputation-tracker-uninstall
environment:
POSTGRES_HOST: haf
networks:
haf-network:
command:
- uninstall_app
- --schema=${REPTRACKER_SCHEMA:-hafbe_rep}
depends_on:
haf:
condition: service_healthy
reputation-tracker-block-processing:
image: ${REPUTATION_TRACKER_REGISTRY:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/reputation_tracker}:${REPUTATION_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- reputation-tracker-standalone
environment:
POSTGRES_HOST: haf
networks:
haf-network:
command:
- process_blocks
- --schema=${REPTRACKER_SCHEMA:-hafbe_rep}
healthcheck:
test: ["CMD-SHELL","/app/block-processing-healthcheck.sh"]
interval: 60s
timeout: 10s
retries: 3
start_period: 48h
depends_on:
reputation-tracker-install:
condition: service_completed_successfully
haf:
condition: service_healthy
reputation-tracker-postgrest:
image: ${POSTGREST_REGISTRY:-registry.gitlab.syncad.com/hive/haf_api_node/postgrest}:${POSTGREST_VERSION:-latest}
profiles:
- apps
- reputation-tracker-standalone
- hafbe
environment:
PGRST_ADMIN_SERVER_PORT: 3001
PGRST_DB_URI: postgresql://reptracker_user@haf/haf_block_log
PGRST_DB_SCHEMA: reptracker_endpoints
PGRST_DB_ANON_ROLE: reptracker_user
PGRST_DB_POOL: 20
PGRST_DB_ROOT_SPEC: root
PGRST_DB_POOL_ACQUISITION_TIMEOUT: 10
PGRST_DB_EXTRA_SEARCH_PATH: ${REPTRACKER_SCHEMA:-hafbe_rep}
# PGRST_OPENAPI_SERVER_PROXY_URI: http://${PUBLIC_HOSTNAME}/reptracker_user/
healthcheck:
test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:3001/ready || exit 1"]
interval: 10s
timeout: 3s
retries: 10
start_period: 1m
networks:
haf-network:
depends_on:
reputation-tracker-install:
condition: service_completed_successfully
haf:
condition: service_healthy
reputation-tracker-postgrest-rewriter:
image: nginx
profiles:
- apps
- reputation-tracker-standalone
- hafbe
volumes:
- type: bind
source: reputation_tracker/reputation_tracker_nginx.conf
target: /etc/nginx/nginx.conf
read_only: true
- type: bind
source: reputation_tracker/rewrite_rules.conf
target: /etc/nginx/rewrite_rules.conf
read_only: true
depends_on:
reputation-tracker-postgrest:
condition: service_healthy
networks:
- haf-network