-
Notifications
You must be signed in to change notification settings - Fork 6
/
sample-monitor.yml
176 lines (165 loc) · 4.39 KB
/
sample-monitor.yml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
version: "3.8"
services:
kong-db:
image: postgres:${PSQL_VERSION:-13-alpine}
container_name: kong-db
ports:
- "${PSQL_PORT:-5432}:5432"
environment:
POSTGRES_DB: ${PSQL_DB:-kong}
POSTGRES_USER: ${PSQL_USER:-kong}
POSTGRES_PASSWORD: ${PSQL_PSWD:-kong}
TZ: ${TIMEZONE:-"Asia/Bangkok"}
healthcheck:
test: ["CMD", "pg_isready", "-U", "kong"]
interval: 5s
timeout: 30s
retries: 3
restart: on-failure
networks:
- kong_net
volumes:
- kong_data:/var/lib/postgresql/data
kong-migrations:
image: kong
container_name: kong-migration
command: kong migrations bootstrap
depends_on:
- kong-db
environment:
KONG_DATABASE: postgres
KONG_PG_HOST: kong-db
KONG_PG_DATABASE: ${PSQL_DB:-kong}
KONG_PG_USER: ${PSQL_USER:-kong}
KONG_PG_PASSWORD: ${PSQL_PSWD:-kong}
networks:
- kong_net
restart: on-failure
kong-migrations-up:
image: kong
container_name: kong-migration-up
command: kong migrations up && kong migrations finish
depends_on:
- kong-db
environment:
KONG_DATABASE: postgres
KONG_PG_DATABASE: kong
KONG_PG_HOST: kong-db
KONG_PG_USER: kong
KONG_PG_PASSWORD: kong
networks:
- kong_net
restart: on-failure
kong:
image: kong:${KONG_VERSION:-latest}
container_name: kong
user: kong
depends_on:
- kong-db
environment:
KONG_ADMIN_ACCESS_LOG: /dev/stdout
KONG_ADMIN_ERROR_LOG: /dev/stderr
KONG_PROXY_LISTEN: ${KONG_PROXY_LISTEN:-"0.0.0.0:8000, 0.0.0.0:8443 ssl http2"}
KONG_ADMIN_LISTEN: ${KONG_ADMIN_LISTEN:-"0.0.0.0:8001, 0.0.0.0:8444 ssl http2"}
KONG_DATABASE: postgres
KONG_PG_HOST: kong-db
KONG_PG_DATABASE: ${PSQL_DB:-kong}
KONG_PG_USER: ${PSQL_USER:-kong}
KONG_PG_PASSWORD: ${PSQL_PSWD:-kong}
KONG_PROXY_ACCESS_LOG: /dev/stdout
KONG_PROXY_ERROR_LOG: /dev/stderr
KONG_PREFIX: ${KONG_PREFIX:-/var/run/kong}
TZ: ${TIMEZONE:-"Asia/Bangkok"}
# For use SSL in Kong
#KONG_SSL: “on”
#KONG_SSL_CERT: /etc/ssl/certs/nginx-selfsigned.crt
#KONG_SSL_CERT_KEY: /etc/ssl/private/nginx-selfsigned.key
#KONG_ADMIN_SSL_CERT: /etc/ssl/certs/nginx-selfsigned.crt
#KONG_ADMIN_SSL_CERT_KEY: /etc/ssl/private/nginx-selfsigned.key
networks:
- kong_net
ports:
- "${KONG_HTTP:-80}:8000"
- "${KONG_HTTPS:-443}:8443"
- "${KONG_ADMIN:-8001}:8001"
- "${KONG_MANAGE:-8444}:8444"
healthcheck:
test: ["CMD", "kong", "health"]
interval: 10s
timeout: 10s
retries: 10
restart: on-failure:5
read_only: true
volumes:
- kong_prefix_vol:${KONG_PREFIX:-/var/run/kong}
- kong_tmp_vol:/tmp
konga:
image: pantsel/konga:${KONGA_VERSION:-latest}
container_name: konga
volumes:
- konga_data:/app/kongadata
networks:
- kong_net
ports:
- "${KONGA_PORT:-1337}:1337"
environment:
TZ: ${TIMEZONE:-"Asia/Bangkok"}
KONGA_LOG_LEVEL: ${KONGA_LOG_LEVEL:-debug}
HOST: http://kong
PORT: 8001
NODE_ENV: ${NODE:-development}
links:
- kong:kong
restart: always
prometheus:
image: prom/prometheus:${PROMETHEUS_VERSION:-latest}
container_name: prometheus
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/promtheus
command:
- "--config.file=/etc/prometheus/prometheus.yml"
ports:
- "${PROMETHEUS_PORT:-9090}:9090"
restart: always
networks:
- kong_net
environment:
TZ: ${TIMEZONE:-"Asia/Bangkok"}
node_exporter:
image: prom/node-exporter:${NODEEXP_VERSION:-latest}
container_name: node_exporter
ports:
- "${NODEEXP_PORT:-9100}:9100"
networks:
- kong_net
restart: always
grafana:
image: grafana/grafana:${GRAFANA_VERSION:-8.2.6-ubuntu}
container_name: grafana
ports:
- ${GRAFANA_PORT:-3000}:3000
volumes:
- grafana_data:/var/lib/grafana
networks:
- kong_net
environment:
TZ: ${TIMEZONE:-"Asia/Bangkok"}
restart: always
volumes:
kong_data: {}
konga_data: {}
prometheus_data: {}
grafana_data: {}
kong_prefix_vol:
driver_opts:
type: tmpfs
device: tmpfs
kong_tmp_vol:
driver_opts:
type: tmpfs
device: tmpfs
networks:
kong_net:
external: false
driver: bridge