-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
306 lines (297 loc) · 12.6 KB
/
docker-compose.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
x-process-variables: &process-variables
# docker containers will run processes as unprivileged user with UID:GID
PUID : 1000
PGID : 1000
services:
# rather than build-in an LDAP server here, see ../lldap in the
# same parent repository as this project and just run that
opensearch-node1:
image: oci.guero.org/opensearch:latest
# userns_mode: keep-id
build:
context: .
dockerfile: opensearch.Dockerfile
restart: "unless-stopped"
container_name: opensearch-node1
environment:
<< : *process-variables
logger.level : 'WARN'
cluster.name : 'opensearch-cluster'
node.name : 'opensearch-node1'
discovery.seed_hosts : 'opensearch-node1,opensearch-node2,opensearch-node3,opensearch-node4'
cluster.initial_cluster_manager_nodes : 'opensearch-node2'
bootstrap.memory_lock : 'true'
MAX_LOCKED_MEMORY : 'unlimited'
OPENSEARCH_JAVA_OPTS : '-server -Xms4g -Xmx4g -Xss256k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true -Dcom.sun.jndi.ldap.object.disableEndpointIdentification=true'
DISABLE_INSTALL_DEMO_CONFIG : 'true'
DISABLE_SECURITY_PLUGIN : 'false'
cluster.routing.allocation.disk.threshold_enabled : 'false'
indices.query.bool.max_clause_count : 4096
path.repo : '/opt/opensearch/backup'
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65535
hard: 65535
cap_add:
- IPC_LOCK
volumes:
- opensearch-data1:/usr/share/opensearch/data
- opensearch-backup1:/opt/opensearch/backup
- ./certs/ca-trust:/var/local/ca-trust:ro
- ./certs/admin-key.pem:/usr/share/opensearch/config/admin-key.pem:ro
- ./certs/admin.pem:/usr/share/opensearch/config/admin.pem:ro
- ./certs/node1-key.pem:/usr/share/opensearch/config/node-key.pem:ro
- ./certs/node1.pem:/usr/share/opensearch/config/node.pem:ro
- ./certs/root-ca.pem:/usr/share/opensearch/config/root-ca.pem:ro
- ./opensearch.yml:/usr/share/opensearch/config/opensearch.yml:ro
- ./security/audit.yml:/usr/share/opensearch/config/opensearch-security/audit.yml:ro
- ./security/action_groups.yml:/usr/share/opensearch/config/opensearch-security/action_groups.yml:ro
- ./security/config.yml:/usr/share/opensearch/config/opensearch-security/config.yml:ro
- ./security/internal_users.yml:/usr/share/opensearch/config/opensearch-security/internal_users.yml:ro
- ./security/roles.yml:/usr/share/opensearch/config/opensearch-security/roles.yml:ro
- ./security/roles_mapping.yml:/usr/share/opensearch/config/opensearch-security/roles_mapping.yml:ro
- ./security/tenants.yml:/usr/share/opensearch/config/opensearch-security/tenants.yml:ro
- type: bind
bind:
create_host_path: false
source: ./.creds.curlrc
target: /var/local/curlrc/.creds.curlrc
read_only: true
ports:
- 0.0.0.0:9200:9200
- 127.0.0.1:9600:9600
networks:
- default
opensearch-node2:
image: oci.guero.org/opensearch:latest
# userns_mode: keep-id
build:
context: .
dockerfile: opensearch.Dockerfile
stdin_open: false
tty: true
restart: "unless-stopped"
container_name: opensearch-node2
environment:
<< : *process-variables
logger.level : 'WARN'
cluster.name : 'opensearch-cluster'
node.name : 'opensearch-node2'
discovery.seed_hosts : 'opensearch-node1,opensearch-node2,opensearch-node3,opensearch-node4'
cluster.initial_cluster_manager_nodes : 'opensearch-node2'
bootstrap.memory_lock : 'true'
MAX_LOCKED_MEMORY : 'unlimited'
OPENSEARCH_JAVA_OPTS : '-server -Xms4g -Xmx4g -Xss256k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true -Dcom.sun.jndi.ldap.object.disableEndpointIdentification=true'
DISABLE_INSTALL_DEMO_CONFIG : 'true'
DISABLE_SECURITY_PLUGIN : 'false'
cluster.routing.allocation.disk.threshold_enabled : 'false'
indices.query.bool.max_clause_count : 4096
path.repo : '/opt/opensearch/backup'
node.roles : 'cluster_manager'
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65535
hard: 65535
cap_add:
- IPC_LOCK
volumes:
- opensearch-data2:/usr/share/opensearch/data
- opensearch-backup2:/opt/opensearch/backup
- ./certs/ca-trust:/var/local/ca-trust:ro
- ./certs/admin-key.pem:/usr/share/opensearch/config/admin-key.pem:ro
- ./certs/admin.pem:/usr/share/opensearch/config/admin.pem:ro
- ./certs/node2-key.pem:/usr/share/opensearch/config/node-key.pem:ro
- ./certs/node2.pem:/usr/share/opensearch/config/node.pem:ro
- ./certs/root-ca.pem:/usr/share/opensearch/config/root-ca.pem:ro
- ./opensearch.yml:/usr/share/opensearch/config/opensearch.yml:ro
- ./security/audit.yml:/usr/share/opensearch/config/opensearch-security/audit.yml:ro
- ./security/action_groups.yml:/usr/share/opensearch/config/opensearch-security/action_groups.yml:ro
- ./security/config.yml:/usr/share/opensearch/config/opensearch-security/config.yml:ro
- ./security/internal_users.yml:/usr/share/opensearch/config/opensearch-security/internal_users.yml:ro
- ./security/roles.yml:/usr/share/opensearch/config/opensearch-security/roles.yml:ro
- ./security/roles_mapping.yml:/usr/share/opensearch/config/opensearch-security/roles_mapping.yml:ro
- ./security/tenants.yml:/usr/share/opensearch/config/opensearch-security/tenants.yml:ro
- type: bind
bind:
create_host_path: false
source: ./.creds.curlrc
target: /var/local/curlrc/.creds.curlrc
read_only: true
ports:
- 127.0.0.1:9202:9200
- 127.0.0.1:9602:9600
networks:
- default
opensearch-node3:
image: oci.guero.org/opensearch:latest
# userns_mode: keep-id
build:
context: .
dockerfile: opensearch.Dockerfile
stdin_open: false
tty: true
restart: "unless-stopped"
container_name: opensearch-node3
environment:
<< : *process-variables
logger.level : 'WARN'
cluster.name : 'opensearch-cluster'
node.name : 'opensearch-node3'
discovery.seed_hosts : 'opensearch-node1,opensearch-node2,opensearch-node3,opensearch-node4'
cluster.initial_cluster_manager_nodes : 'opensearch-node2'
bootstrap.memory_lock : 'true'
MAX_LOCKED_MEMORY : 'unlimited'
OPENSEARCH_JAVA_OPTS : '-server -Xms16g -Xmx16g -Xss256k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true -Dcom.sun.jndi.ldap.object.disableEndpointIdentification=true'
DISABLE_INSTALL_DEMO_CONFIG : 'true'
DISABLE_SECURITY_PLUGIN : 'false'
cluster.routing.allocation.disk.threshold_enabled : 'false'
indices.query.bool.max_clause_count : 4096
path.repo : '/opt/opensearch/backup'
node.roles : 'data,ingest'
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65535
hard: 65535
cap_add:
- IPC_LOCK
volumes:
- opensearch-data3:/usr/share/opensearch/data
- opensearch-backup3:/opt/opensearch/backup
- ./certs/ca-trust:/var/local/ca-trust:ro
- ./certs/admin-key.pem:/usr/share/opensearch/config/admin-key.pem:ro
- ./certs/admin.pem:/usr/share/opensearch/config/admin.pem:ro
- ./certs/node3-key.pem:/usr/share/opensearch/config/node-key.pem:ro
- ./certs/node3.pem:/usr/share/opensearch/config/node.pem:ro
- ./certs/root-ca.pem:/usr/share/opensearch/config/root-ca.pem:ro
- ./opensearch.yml:/usr/share/opensearch/config/opensearch.yml:ro
- ./security/audit.yml:/usr/share/opensearch/config/opensearch-security/audit.yml:ro
- ./security/action_groups.yml:/usr/share/opensearch/config/opensearch-security/action_groups.yml:ro
- ./security/config.yml:/usr/share/opensearch/config/opensearch-security/config.yml:ro
- ./security/internal_users.yml:/usr/share/opensearch/config/opensearch-security/internal_users.yml:ro
- ./security/roles.yml:/usr/share/opensearch/config/opensearch-security/roles.yml:ro
- ./security/roles_mapping.yml:/usr/share/opensearch/config/opensearch-security/roles_mapping.yml:ro
- ./security/tenants.yml:/usr/share/opensearch/config/opensearch-security/tenants.yml:ro
- type: bind
bind:
create_host_path: false
source: ./.creds.curlrc
target: /var/local/curlrc/.creds.curlrc
read_only: true
ports:
- 127.0.0.1:9203:9200
- 127.0.0.1:9603:9600
networks:
- default
opensearch-node4:
image: oci.guero.org/opensearch:latest
# userns_mode: keep-id
build:
context: .
dockerfile: opensearch.Dockerfile
stdin_open: false
tty: true
restart: "unless-stopped"
container_name: opensearch-node4
environment:
<< : *process-variables
logger.level : 'WARN'
cluster.name : 'opensearch-cluster'
node.name : 'opensearch-node4'
discovery.seed_hosts : 'opensearch-node1,opensearch-node2,opensearch-node3,opensearch-node4'
cluster.initial_cluster_manager_nodes : 'opensearch-node2'
bootstrap.memory_lock : 'true'
MAX_LOCKED_MEMORY : 'unlimited'
OPENSEARCH_JAVA_OPTS : '-server -Xms16g -Xmx16g -Xss256k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true -Dcom.sun.jndi.ldap.object.disableEndpointIdentification=true'
DISABLE_INSTALL_DEMO_CONFIG : 'true'
DISABLE_SECURITY_PLUGIN : 'false'
cluster.routing.allocation.disk.threshold_enabled : 'false'
indices.query.bool.max_clause_count : 4096
path.repo : '/opt/opensearch/backup'
node.roles : 'data,ingest'
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65535
hard: 65535
cap_add:
- IPC_LOCK
volumes:
- opensearch-data4:/usr/share/opensearch/data
- opensearch-backup4:/opt/opensearch/backup
- ./certs/ca-trust:/var/local/ca-trust:ro
- ./certs/admin-key.pem:/usr/share/opensearch/config/admin-key.pem:ro
- ./certs/admin.pem:/usr/share/opensearch/config/admin.pem:ro
- ./certs/node4-key.pem:/usr/share/opensearch/config/node-key.pem:ro
- ./certs/node4.pem:/usr/share/opensearch/config/node.pem:ro
- ./certs/root-ca.pem:/usr/share/opensearch/config/root-ca.pem:ro
- ./opensearch.yml:/usr/share/opensearch/config/opensearch.yml:ro
- ./security/audit.yml:/usr/share/opensearch/config/opensearch-security/audit.yml:ro
- ./security/action_groups.yml:/usr/share/opensearch/config/opensearch-security/action_groups.yml:ro
- ./security/config.yml:/usr/share/opensearch/config/opensearch-security/config.yml:ro
- ./security/internal_users.yml:/usr/share/opensearch/config/opensearch-security/internal_users.yml:ro
- ./security/roles.yml:/usr/share/opensearch/config/opensearch-security/roles.yml:ro
- ./security/roles_mapping.yml:/usr/share/opensearch/config/opensearch-security/roles_mapping.yml:ro
- ./security/tenants.yml:/usr/share/opensearch/config/opensearch-security/tenants.yml:ro
- type: bind
bind:
create_host_path: false
source: ./.creds.curlrc
target: /var/local/curlrc/.creds.curlrc
read_only: true
ports:
- 127.0.0.1:9204:9200
- 127.0.0.1:9604:9600
networks:
- default
opensearch-dashboards:
image: oci.guero.org/opensearch-dashboards:latest
# userns_mode: keep-id
build:
context: .
dockerfile: dashboards.Dockerfile
stdin_open: false
tty: true
restart: "unless-stopped"
container_name: opensearch-dashboards
ports:
- 0.0.0.0:5601:5601
environment:
<< : *process-variables
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200"]'
DISABLE_SECURITY_DASHBOARDS_PLUGIN: "false"
volumes:
- ./certs/client-key.pem:/usr/share/opensearch-dashboards/config/client-key.pem:ro
- ./certs/client.pem:/usr/share/opensearch-dashboards/config/client.pem:ro
- ./certs/root-ca.pem:/usr/share/opensearch-dashboards/config/root-ca.pem:ro
- ./opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml:ro
- type: bind
bind:
create_host_path: false
source: ./.creds.curlrc
target: /var/local/curlrc/.creds.curlrc
read_only: true
networks:
- default
volumes:
opensearch-data1:
opensearch-data2:
opensearch-data3:
opensearch-data4:
opensearch-backup1:
opensearch-backup2:
opensearch-backup3:
opensearch-backup4:
networks:
default:
external: false