blob: 728ad5a4fc7be92bc2df62ccf1d3492664dc9e93 [file] [log] [blame]
David K. Bainbridgebba65ff2018-01-19 09:26:09 -08001# Copyright 2017 the original author or authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15#
16# SWARM_MANAGER_COUNT - The number of managers in the swarm cluster. This is
17# used to limit the number of instances of some of the
18# service instances for smaller clusters.
19# [ NOTE - currently this parameter is handled via a Jinga2
20# templating capability, because as of 17.09.0-ce Docker
21# cannot use and environment variable for the `replicas`
22# attribute on a container. ]
David K. Bainbridge737b74f2018-01-22 12:57:52 -080023# REGISTRY - The docker registry host from which images should be
24# pulled, i.e. `private-reg.com:5000/`. If specified
25# it should end in a `/`. Defaults to empty.
26# REPOSITORY - The docker repository name from which voltha specific
27# images should be pulled, i.e. `voltha/`. If specified it
28# should end in a `/`. Defaults to empty.
29# TAG - The tag that should be used when referencing VOLTHA docker
30# images, defaults to `latest`.
31# CONSUL_ROOT - The local path on which the consul/data and consul/config
32# directories should be created. Defaults to `/var/local`.
33# VOLTHA_LOGS - The location into which `fluentd` should writes logs.
34# Defaults to `/var/log`.
35# RADIUS_ROOT - The location in which the `data/clients.conf` and
36# `data/users` configuration files can be found. Defaults
37# to `/var/local`.
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080038# DOCKER_HOST_IP -
David K. Bainbridge737b74f2018-01-22 12:57:52 -080039# ZK_TAG - The tag that should be used when referencing the ZooKeeper
40# docker image. Defaults to `latest`.
41# KAFKA_TAG - The tag that should be used when referencing the Kafka
42# docker image. Default to `1.0.0`.
43# CONSUL_TAG - The tag that should be used when referencing the Consul
44# docker image. Defaults to `0.9.2`.
45# RADIUS_TAG - The tag that should be used when referencing the FreeRADIUS
46# docker image. Defaults to `latest`.
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080047version: "3"
48
49services:
50 zk1:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080051 image: "${REGISTRY}wurstmeister/zookeeper:${ZK_TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080052 logging:
53 driver: "json-file"
54 options:
55 max-size: "10m"
56 max-file: 3
57 networks:
58 - kafka-net
59 environment:
60 ZOO_MY_ID: 1
61 ZOO_SERVERS: server.1=0.0.0.0:2888:3888 server.2=zk2:2888:3888 server.3=zk3:2888:3888
62
63 zk2:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080064 image: "${REGISTRY}wurstmeister/zookeeper:${ZK_TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080065 logging:
66 driver: "json-file"
67 options:
68 max-size: "10m"
69 max-file: 3
70 networks:
71 - kafka-net
72 environment:
73 ZOO_MY_ID: 2
74 ZOO_SERVERS: server.1=zk1:2888:3888 server.2=0.0.0.0:2888:3888 server.3=zk3:2888:3888
75
76 zk3:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080077 image: "${REGISTRY}wurstmeister/zookeeper:${ZK_TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080078 logging:
79 driver: "json-file"
80 options:
81 max-size: "10m"
82 max-file: 3
83 networks:
84 - kafka-net
85 environment:
86 ZOO_MY_ID: 3
87 ZOO_SERVERS: server.1=zk1:2888:3888 server.2=zk2:2888:3888 server.3=0.0.0.0:2888:3888
88
89 kafka:
90 deploy:
91 mode: global
David K. Bainbridge737b74f2018-01-22 12:57:52 -080092 image: "${REGISTRY}wurstmeister/kafka:${KAFKA_TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080093 logging:
94 driver: "json-file"
95 options:
96 max-size: "10m"
97 max-file: 3
98 environment:
99 KAFKA_ADVERTISED_PORT: 9092
100 KAFKA_ZOOKEEPER_CONNECT: zk1:2181,zk2:2181,zk3:2181
101 KAFKA_HEAP_OPTS: -Xmx256M -Xms128M
102 volumes:
103 - /var/run/docker.sock:/var/run/docker.sock
104 networks:
105 - kafka-net
106 - voltha-net
107 ports:
108 - 9092:9092
109
Jonathan Hart87314cd2018-02-12 17:15:35 -0800110 vconsul:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800111 image: "${REGISTRY}consul:${CONSUL_TAG:-0.9.2}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800112 logging:
113 driver: "json-file"
114 options:
115 max-size: "10m"
116 max-file: 3
117
118 # Deploy to all docker manager nodes
119 deploy:
120 mode: global
121 placement:
122 constraints:
123 - node.role == manager
124 restart_policy:
125 condition: on-failure
126 entrypoint:
127 - consul
128 - agent
129 - -server
130 - -bootstrap-expect={{ SWARM_MANAGER_COUNT | default(1) }}
131 - -config-dir=/consul/config
132 - -data-dir=/consul/data # mandatory property
133 - -client=0.0.0.0
134 - -advertise={{ '{{' }} GetAllInterfaces | include "network" "172.29.20.0/29" | sort "size,address" | attr "address" {{ '}}' }}
135 - -ui
136 - -raft-protocol=3
137 - -rejoin
138 - -retry-join=172.29.20.2
139 - -retry-join=172.29.20.3
140 - -retry-join=172.29.20.4
141 - -retry-join=172.29.20.5
142 - -retry-join=172.29.20.6
143 - -retry-join=172.29.20.7
144 networks:
145 - consul-net
146 - voltha-net
147 ports:
148 - "8300:8300"
149 - "8400:8400"
150 - "8500:8500"
151 - "8600:8600/udp"
152{%- if CONSUL_ROOT is defined and CONSUL_ROOT %}
153 volumes:
154 - {{ CONSUL_ROOT }}/data:/consul/data
155 - {{ CONSUL_ROOT }}/config:/consul/config
156{%- endif %}
157
158 fluentdactv:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800159 image: "${REGISTRY}${REPOSITORY}voltha-fluentd:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800160 logging:
161 driver: "json-file"
162 options:
163 max-size: "10m"
164 max-file: 3
165 deploy:
166 replicas: 1
167 restart_policy:
168 condition: on-failure
169 environment:
170 FLUENTD_CONF: fluent-agg.conf
171 networks:
172 - voltha-net
173 ports:
174 - "24224"
175{%- if VOLTHA_LOGS is defined and VOLTHA_LOGS %}
176 volumes:
177 - "{{ VOLTHA_LOGS }}:/fluentd/log"
178{%- endif %}
179
180 fluentdstby:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800181 image: "${REGISTRY}${REPOSITORY}voltha-fluentd:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800182 logging:
183 driver: "json-file"
184 options:
185 max-size: "10m"
186 max-file: 3
187 deploy:
188 replicas: 1
189 restart_policy:
190 condition: on-failure
191 environment:
192 FLUENTD_CONF: fluent-agg.conf
193 networks:
194 - voltha-net
195 ports:
196 - "24224"
197{%- if VOLTHA_LOGS is defined and VOLTHA_LOGS %}
198 volumes:
199 - "{{ VOLTHA_LOGS }}:/fluentd/log"
200{%- endif %}
201
202 # The Fluentd container is part of the data collection
203 # infrastructure.
204 fluentd:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800205 image: "${REGISTRY}${REPOSITORY}voltha-fluentd:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800206 logging:
207 driver: "json-file"
208 options:
209 max-size: "10m"
210 max-file: 3
211 deploy:
212 mode: replicated
213 replicas: {{ SWARM_MANAGER_COUNT | default(1) }}
214 restart_policy:
215 condition: any
216 environment:
217 SERVICE_24224_NAME: "fluentd-intake"
218 FLUENTD_CONF: fluent.conf
219 WAIT_FOR: "fluentdactv:24224 fluentdstby:24224"
220 WAIT_FOR_TIMEOUT: 0
221 networks:
222 - voltha-net
223 ports:
224 - "24224"
225
226 # Free RADIUS can be used to test VOLTHA's authentication
227 # sequence, i.e., EAPOL from a device behind an OLT to
228 # RADIUS authentication on the back end systems. By default
229 # no instances of Free RADIUS are deployed.
230 freeradius:
231 deploy:
232 replicas: 0
233 image: "${REGISTRY}marcelmaatkamp/freeradius:${RADIUS_TAG:-latest}"
234 logging:
235 driver: "json-file"
236 options:
237 max-size: "10m"
238 max-file: 3
239 ports:
240 - "1812:1812/udp"
241 - "1813:1813"
242 - "18120:18120"
243
244{%- if RADIUS_ROOT is defined and RADIUS_ROOT %}
245 # CONFIG: When deploying a Free RADIUS instance client and user
246 # information will need to be configured for the service to
247 # operate correctly.
248 #
249 volumes:
250 - {{ RADIUS_ROOT }}/data/clients.conf:/etc/raddb/clients.conf
251 - {{ RADIUS_ROOT }}/data/users:/etc/raddb/users
252{%- endif %}
253 networks:
254 - voltha-net
255
256 # The cluster manager container calculates and servers ONOS cluster
257 # meta data via HTTP so that ONOS instances can form an HA cluster.
258 # The cluster manager must run on a manager node so that it can
259 # retrieve service information from manager nodes
260 onos_cluster_manager:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800261 image: "${REGISTRY}${REPOSITORY}voltha-unum:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800262 deploy:
263 replicas: 1
264 placement:
265 constraints:
266 - node.role == manager
267 environment:
268 PERIOD: "10s"
269 LOG_LEVEL: "debug"
270 ORCHESTRATION: "swarm://"
271 LABELS: "org.voltha.onos.cluster:true"
272 NETWORK: "org.voltha.onos.cluster:true"
273 ports:
274 - 5411:5411
275 networks:
276 - voltha-net
277 volumes:
278 - /var/run/docker.sock:/var/run/docker.sock
279
280 # ONOS is the SDN controller for the solution and handles AAA,
281 # IGMP proxy, and L2 DHCP requests as well as manages flows
282 # down to the virtual devices (MCAST + OLT flows).
283 # Currently there is a single instance of ONOS as some of the
284 # applications running under ONOS do not support HA.
285 onos:
286 deploy:
287 replicas: 1
288 labels:
289 org.voltha.onos.cluster: "true"
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800290 image: "${REGISTRY}${REPOSITORY}voltha-onos:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800291 logging:
292 driver: "json-file"
293 options:
294 max-size: "10m"
295 max-file: 3
296 ports:
297 - 8101:8101 # ssh
298 - 6653:6653 # OF
299 - 8181:8181 # UI
300 environment:
301 EXTRA_JAVA_OPTS: "-Donos.cluster.metadata.uri=http://onos_cluster_manager:5411/config/"
302 networks:
303 - voltha-net
304
Jonathan Hartf78cd1b2018-02-05 09:31:29 -0800305 config_push:
306 deploy:
307 replicas: 1
308 restart_policy:
309 condition: on-failure
310 image: "${REGISTRY}${REPOSITORY}voltha-config-push:${TAG:-latest}"
311 logging:
312 driver: "json-file"
313 options:
314 max-size: "10m"
315 max-file: 3
316 environment:
317 ONOS_CONNECTION: "onos:8181"
318 ONOS_USER: "karaf"
319 ONOS_PASSWORD: "karaf"
Jonathan Hartb122cd52018-02-14 15:37:22 -0800320{%- if ONOS_CONFIG is defined and ONOS_CONFIG %}
321 volumes:
322 - {{ ONOS_CONFIG }}:/data/onos-config.json
323{%- endif %}
Jonathan Hartf78cd1b2018-02-05 09:31:29 -0800324 networks:
325 - voltha-net
326
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800327 # The VCORE container is the core capabilities of VOLTHA including
328 # interacting with device adapters
329 vcore:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800330 image: "${REGISTRY}${REPOSITORY}voltha-voltha:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800331 logging:
332 driver: "json-file"
333 options:
334 max-size: "10m"
335 max-file: 3
336 deploy:
337 replicas: {{ SWARM_MANAGER_COUNT | default(1) }}
338 entrypoint:
339 - voltha/voltha/main.py
340 - -v
Jonathan Hart87314cd2018-02-12 17:15:35 -0800341 - --consul=vconsul:8500
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800342 - --fluentd=fluentd:24224
343 - --kafka=kafka
344 - --rest-port=8880
345 - --grpc-port=50556
346 - --instance-id-is-container-name
347 - --backend=consul
348 - --inter-core-subnet=172.29.19.0/24
349 - --pon-subnet=172.29.19.0/24
350 networks:
351 - voltha-net
352 ports:
353 - "8880:8880"
354 - "18880:18880"
355 - "50556:50556"
356 volumes:
357 - /var/run/docker.sock:/tmp/docker.sock
358
359 # The OpenFlow Agent support the OpenFlow protocol communication
360 # between ONOS and VOLTHA.
361 ofagent:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800362 image: "${REGISTRY}${REPOSITORY}voltha-ofagent:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800363 logging:
364 driver: "json-file"
365 options:
366 max-size: "10m"
367 max-file: 3
368 deploy:
369 replicas: 1
370 entrypoint:
371 - /ofagent/ofagent/main.py
372 - -v
Jonathan Hart87314cd2018-02-12 17:15:35 -0800373 - --consul=vconsul:8500
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800374 - --fluentd=fluentd:24224
375 - --controller=onos:6653
376 - --grpc-endpoint=vcore:50556
377 - --instance-id-is-container-name
Jonathan Hartf78cd1b2018-02-05 09:31:29 -0800378 - --enable-tls
379 - --key-file=/ofagent/pki/voltha.key
380 - --cert-file=/ofagent/pki/voltha.crt
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800381 volumes:
382 - /var/run/docker.sock:/tmp/docker.sock
383 networks:
384 - voltha-net
385
386 # The VOLTHA container supports load balancing of request to
387 # the VOLTHA components as well as surfaces a REST API and maps
388 # the requests to GPRC
389 voltha:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800390 image: "${REGISTRY}${REPOSITORY}voltha-envoy:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800391 logging:
392 driver: "json-file"
393 options:
394 max-size: "10m"
395 max-file: 3
396 deploy:
397 replicas: 1
398 #environment:
399 # DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
400 entrypoint:
401 - /usr/local/bin/envoyd
Jonathan Hart87314cd2018-02-12 17:15:35 -0800402 - -consul-svc-nme
403 - "vconsul"
404 - -kv-svc-name
405 - "vconsul"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800406 - -envoy-cfg-template
407 - "/envoy/voltha-grpc-proxy.template.json"
408 - -envoy-config
409 - "/envoy/voltha-grpc-proxy.json"
410 networks:
411 - voltha-net
412 ports:
413 - "50555:50555"
414 - "8882:8882"
415 - "8443:8443"
416 - "8001:8001"
417 volumes:
418 - /var/run/docker.sock:/tmp/docker.sock
419
420 # The CLI container provides an CLI to the VOLTHA capabilitiy
421 # that can be accessed via SSH.
422 cli:
David K. Bainbridge60fdad72018-02-20 11:17:38 -0500423 image: "${REGISTRY}${REPOSITORY}voltha-cli${CUSTOM_CLI_LABEL}:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800424 logging:
425 driver: "json-file"
426 options:
427 max-size: "10m"
428 max-file: 3
429 deploy:
430 replicas: {{ SWARM_MANAGER_COUNT | default(1) }}
431 #environment:
432 # DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
433 entrypoint:
434 - /cli/cli/setup.sh
Jonathan Hart87314cd2018-02-12 17:15:35 -0800435 - -C vconsul:8500
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800436 - -g voltha:50555
437 - -s voltha:18880
438 - -G
439 networks:
440 - voltha-net
441 ports:
442 - "5022:22"
443
444 # The Netconf container provides an NETCONF API to be used
445 # with VOLTHA and maps that to GRPC requests
446 netconf:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800447 image: "${REGISTRY}${REPOSITORY}voltha-netconf:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800448 logging:
449 driver: "json-file"
450 options:
451 max-size: "10m"
452 max-file: 3
453 deploy:
454 mode: global
455 environment:
456 SERVICE_1830_NAME: "netconf-server"
457 entrypoint:
458 - /netconf/netconf/main.py
459 - -v
Jonathan Hart87314cd2018-02-12 17:15:35 -0800460 - --consul=vconsul:8500
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800461 - --fluentd=fluentd:24224
462 - --grpc-endpoint=voltha:50555
463 - --instance-id-is-container-name
464 networks:
465 - voltha-net
466 ports:
467 - "830:1830"
468 volumes:
469 - /var/run/docker.sock:/tmp/docker.sock
470
471 # The tools container provides a bash command shell to which
472 # an operator can SSH that has the same network connectivity
473 # as other VOLTHA containers and is thus a convenient
474 # troubleshooting tool
475 tools:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800476 image: "${REGISTRY}${REPOSITORY}voltha-tools:${TAG:-latest}"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800477 logging:
478 driver: "json-file"
479 options:
480 max-size: "10m"
481 max-file: 3
482 deploy:
483 mode: replicated
484 replicas: 1
485 restart_policy:
486 condition: on-failure
487 ports:
488 - "4022:22"
489 networks:
490 - voltha-net
491 - kafka-net
492
493networks:
494 consul-net:
495 driver: overlay
496 driver_opts:
497 encrypted: "true"
498 ipam:
499 driver: default
500 config:
501 - subnet: 172.29.20.0/29
502
503 voltha-net:
504 driver: overlay
505 driver_opts:
506 encrypted: "true"
507 ipam:
508 driver: default
509 config:
510 - subnet: 172.29.19.0/24
511 labels:
512 org.voltha.onos.cluster: "true"
513
514 kafka-net:
515 driver: overlay
516 driver_opts:
517 encrypted: "true"