blob: d11ffcf2b4fab04587e1054acabb119bd243714c [file] [log] [blame]
Stephane Barbarie2940dac2017-08-18 14:15:17 -04001#
2# This Docker stackfile deploys a ofagent container on all swarm instances.
3#
4# The stackfile assumes that overlay network 'voltha_net' has already been
5# created. To deploy the stack, issue the command:
6#
7# docker stack deploy -c docker-compose-ofagent-swarm.yml ofagent
8#
9version: "3.2"
10services:
11 ofagent:
12 image: cord/ofagent
David K. Bainbridge4e920b72017-10-12 07:49:14 -070013 logging:
Kyle Farnsworth9938d292017-11-02 15:21:21 -050014 driver: "json-file"
David K. Bainbridge4e920b72017-10-12 07:49:14 -070015 options:
16 max-size: "10m"
17 max-file: 3
Stephane Barbarie2940dac2017-08-18 14:15:17 -040018 deploy:
19 replicas: 3
20 entrypoint:
21 - /ofagent/ofagent/main.py
22 - -v
23 - --consul=consul:8500
24 - --fluentd=fluentd:24224
25 - --controller=onos:6653
26 - --grpc-endpoint=vcore:50556
27 - --instance-id-is-container-name
Girishf6eeaea2017-11-13 10:53:57 +053028 - --enable-tls
29 - --key-file=/ofagent/pki/voltha.key
30 - --cert-file=/ofagent/pki/voltha.crt
Stephane Barbarie2940dac2017-08-18 14:15:17 -040031 volumes:
32 - /var/run/docker.sock:/tmp/docker.sock
33 networks:
34 - voltha-net
35
36networks:
37 voltha-net:
38 external:
39 name: voltha_net