blob: a6995186cda69df1a7de6b22407a02eb00b061e4 [file] [log] [blame]
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -07001#
2# Copyright 2016 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Nathan Knuthedc88da2016-09-17 00:28:05 -070017ifeq ($(VOLTHA_BASE)_set,_set)
18$(error To get started, please source the env.sh file)
19endif
20
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070021include setup.mk
22
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +010023ifneq ($(http_proxy)$(https_proxy),)
24# Include proxies from the environment
25DOCKER_PROXY_ARGS = \
26 --build-arg http_proxy=$(http_proxy) \
27 --build-arg https_proxy=$(https_proxy) \
28 --build-arg ftp_proxy=$(ftp_proxy) \
29 --build-arg no_proxy=$(no_proxy) \
30 --build-arg HTTP_PROXY=$(HTTP_PROXY) \
31 --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \
32 --build-arg FTP_PROXY=$(FTP_PROXY) \
33 --build-arg NO_PROXY=$(NO_PROXY)
34endif
35DOCKER_BUILD_ARGS = $(DOCKER_PROXY_ARGS) $(DOCKER_BUILD_EXTRA_ARGS)
36
Zsolt Haraszti41612482016-09-21 12:26:20 -070037VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]')
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070038
David K. Bainbridgebd0fe172018-01-17 09:35:49 -080039.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha ofagent netconf shovel onos dashd vcli portainer grafana nginx consul envoy golang envoyd tools opennms logstash unum
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070040
ggowdru9974f212017-06-06 23:31:25 -070041# This should to be the first and default target in this Makefile
42help:
43 @echo "Usage: make [<target>]"
44 @echo "where available targets are:"
45 @echo
46 @echo "build : Build the Voltha protos and docker images.\n\
47 If this is the first time you are building, choose \"make build\" option."
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -040048 @echo "production : Build voltha for production deployment"
ggowdru9974f212017-06-06 23:31:25 -070049 @echo "clean : Remove files created by the build and tests"
50 @echo "distclean : Remove venv directory"
51 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
52 @echo "flake8 : Run specifically flake8 tests"
53 @echo "help : Print this help"
54 @echo "protos : Compile all grpc/protobuf files"
55 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
56 @echo "venv : Build local Python virtualenv if did not exist yet"
57 @echo "utest : Run all unit tests"
58 @echo "itest : Run all integration tests"
59 @echo "containers : Build all the docker containers"
60 @echo "docker-base : Build the base docker container used by all other dockers"
61 @echo "voltha : Build the voltha docker container"
ggowdru9974f212017-06-06 23:31:25 -070062 @echo "ofagent : Build the ofagent docker container"
ggowdru9974f212017-06-06 23:31:25 -070063 @echo "netconf : Build the netconf docker container"
64 @echo "shovel : Build the shovel docker container"
65 @echo "onos : Build the onos docker container"
66 @echo "dashd : Build the dashd docker container"
67 @echo "vcli : Build the vcli docker container"
68 @echo "portainer : Build the portainer docker container"
69 @echo "grafana : Build the grafana docker container"
70 @echo "nginx : Build the nginx docker container"
schowdhury40739212017-06-12 07:40:31 -070071 @echo "consul : Build the consul docker container"
David K. Bainbridge215e0242017-09-05 23:18:24 -070072 @echo "unum : Build the unum docker container"
ggowdru9974f212017-06-06 23:31:25 -070073 @echo
Nathan Knuth5157de02016-09-16 15:20:37 -070074
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070075## New directories can be added here
76DIRS:=\
Nathan Knuthedc88da2016-09-17 00:28:05 -070077voltha/northbound/openflow \
78voltha/northbound/openflow/agent \
79voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070080
81## If one directory depends on another directory that
82## dependency can be expressed here
83##
84## For example, if the Tibit directory depended on the eoam
85## directory being built first, then that can be expressed here.
86## driver/tibit: eoam
87
88# Parallel Build
89$(DIRS):
90 @echo " MK $@"
91 $(Q)$(MAKE) -C $@
92
93# Parallel Clean
94DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
95$(DIRS_CLEAN):
96 @echo " CLEAN $(basename $@)"
97 $(Q)$(MAKE) -C $(basename $@) clean
98
99# Parallel Flake8
100DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
101$(DIRS_FLAKE8):
102 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -0700103 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700104
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700105
Zsolt Harasztidb892332017-01-09 11:08:38 -0800106build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -0700107
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400108production: protos prod-containers
109
khenaidoofe874ae2017-07-14 18:07:27 -0400110jenkins : protos jenkins-containers
111
David K. Bainbridgebd0fe172018-01-17 09:35:49 -0800112jenkins-containers: docker-base voltha ofagent netconf consul unum
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400113
khenaidoo079a7762017-10-26 21:42:05 -0400114prod-containers: docker-base voltha ofagent netconf shovel dashd vcli grafana consul tools golang envoyd envoy fluentd unum
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400115
David K. Bainbridgebd0fe172018-01-17 09:35:49 -0800116containers: docker-base voltha ofagent netconf shovel onos tester config-push dashd vcli portainer grafana nginx consul tools golang envoyd envoy fluentd unum
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500117
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -0800118docker-base:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100119 docker build $(DOCKER_BUILD_ARGS) -t cord/voltha-base -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700120
Shad Ansari83777cb2017-06-02 14:56:08 -0700121voltha: voltha-adapters
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100122 docker build $(DOCKER_BUILD_ARGS) -t cord/voltha -f docker/Dockerfile.voltha .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800123
Shad Ansari83777cb2017-06-02 14:56:08 -0700124voltha-adapters:
125 make -C voltha/adapters/asfvolt16_olt
126
Zsolt Harasztidb892332017-01-09 11:08:38 -0800127ofagent:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100128 docker build $(DOCKER_BUILD_ARGS) -t cord/ofagent -f docker/Dockerfile.ofagent .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800129
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400130tools:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100131 docker build $(DOCKER_BUILD_ARGS) -t voltha/tools -f docker/Dockerfile.tools .
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400132
sathishgb5d1c182017-07-13 14:20:19 +0530133fluentd:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100134 docker build $(DOCKER_BUILD_ARGS) -t cord/fluentd -f docker/Dockerfile.fluentd .
sathishgb5d1c182017-07-13 14:20:19 +0530135
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400136envoy:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100137 docker build $(DOCKER_BUILD_ARGS) -t voltha/envoy -f docker/Dockerfile.envoy .
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400138
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400139envoyd:
Sergio Slobodrian6570c742017-08-07 23:11:33 -0400140 make -C envoy
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400141 make -C envoy/go/envoyd
142
143golang:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100144 docker build $(DOCKER_BUILD_ARGS) -t go-builder -f envoy/go/golang-builder/Dockerfile ./envoy/go/golang-builder
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400145
Zsolt Harasztidb892332017-01-09 11:08:38 -0800146netconf:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100147 docker build $(DOCKER_BUILD_ARGS) -t cord/netconf -f docker/Dockerfile.netconf .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800148
Stephane Barbarie14088962017-06-01 16:56:55 -0400149netopeer:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100150 docker build $(DOCKER_BUILD_ARGS) -t cord/netopeer -f docker/Dockerfile.netopeer .
Stephane Barbarie14088962017-06-01 16:56:55 -0400151
Zsolt Harasztidb892332017-01-09 11:08:38 -0800152shovel:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100153 docker build $(DOCKER_BUILD_ARGS) -t cord/shovel -f docker/Dockerfile.shovel .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800154
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500155dashd:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100156 docker build $(DOCKER_BUILD_ARGS) -t cord/dashd -f docker/Dockerfile.dashd .
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500157
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400158vcli:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100159 docker build $(DOCKER_BUILD_ARGS) -t cord/vcli -f docker/Dockerfile.cli .
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400160
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400161portainer:
162 portainer/buildPortainer.sh
163
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400164nginx:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100165 docker build $(DOCKER_BUILD_ARGS) -t voltha/nginx -f docker/Dockerfile.nginx .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400166
schowdhury40739212017-06-12 07:40:31 -0700167consul:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100168 docker build $(DOCKER_BUILD_ARGS) -t voltha/consul -f docker/Dockerfile.consul .
schowdhury40739212017-06-12 07:40:31 -0700169
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400170grafana:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100171 docker build $(DOCKER_BUILD_ARGS) -t voltha/grafana -f docker/Dockerfile.grafana .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400172
Zsolt Harasztidb892332017-01-09 11:08:38 -0800173onos:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100174 docker build $(DOCKER_BUILD_ARGS) -t cord/onos -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800175
David K. Bainbridge215e0242017-09-05 23:18:24 -0700176unum:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100177 docker build $(DOCKER_BUILD_ARGS) -t voltha/unum -f unum/Dockerfile ./unum
David K. Bainbridge215e0242017-09-05 23:18:24 -0700178
alshabib5e180572017-01-10 23:59:47 -0600179tester:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100180 docker build $(DOCKER_BUILD_ARGS) -t cord/tester -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600181
alshabiba5514082017-03-31 11:08:27 -0500182config-push:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100183 docker build $(DOCKER_BUILD_ARGS) -t cord/config-push -f docker/Dockerfile.configpush docker
alshabiba5514082017-03-31 11:08:27 -0500184
Stephane Barbarie95507c42017-09-19 10:41:04 -0400185opennms:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100186 docker build $(DOCKER_BUILD_ARGS) -t cord/opennms -f docker/Dockerfile.opennms .
Stephane Barbarie95507c42017-09-19 10:41:04 -0400187
188logstash:
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +0100189 docker build $(DOCKER_BUILD_ARGS) -t cord/logstash -f docker/Dockerfile.logstash .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400190
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700191protos:
192 make -C voltha/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700193 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500194 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700195
196install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700197 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700198
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700199clean:
200 find voltha -name '*.pyc' | xargs rm -f
201
Nathan Knutha6b09e32016-09-21 16:26:09 -0700202distclean: clean
203 rm -rf ${VENVDIR}
204
khenaidoofe874ae2017-07-14 18:07:27 -0400205
206fetch-jenkins:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400207 docker pull consul:0.9.2
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500208 docker pull fluent/fluentd:v0.14.23.rc1
khenaidoofe874ae2017-07-14 18:07:27 -0400209 docker pull ubuntu:xenial
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500210 docker pull wurstmeister/kafka:1.0.0
211 docker pull zookeeper:3.4.11
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700212fetch:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400213 docker pull consul:0.9.2
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500214 docker pull fluent/fluentd:v0.14.23.rc1
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700215 docker pull ubuntu:xenial
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500216 docker pull wurstmeister/kafka:1.0.0
217 docker pull zookeeper:3.4.11
218 docker pull portainer/portainer:1.15.2
Sergio Slobodrianee417fa2017-08-11 09:34:50 -0400219 docker pull lyft/envoy:29361deae91575a1d46c7a21e913f19e75622ebe
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400220 docker pull registry:2
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500221 docker pull kamon/grafana_graphite:3.0
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700222
223purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700224 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700225
226rebuild-venv: purge-venv venv
227
228venv: ${VENVDIR}/.built
229
230${VENVDIR}/.built:
231 @ virtualenv ${VENVDIR}
232 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700233 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700234 if ! pip install -r requirements.txt; \
235 then \
236 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
237 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700238 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700239 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700240 fi
241
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800242test: venv protos run-as-root-tests
243 @ echo "Executing all tests"
244 . ${VENVDIR}/bin/activate && \
245 nosetests -s tests \
246 --exclude-dir=./tests/itests/run_as_root/
247
Zsolt Haraszti66186622016-11-08 14:24:00 -0800248utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700249 @ echo "Executing all unit tests"
250 . ${VENVDIR}/bin/activate && \
Kim Kempf8c2812c2017-10-23 15:07:50 -0700251 for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; nosetests $$d; done
alshabib29a3ed52017-01-23 14:29:21 -0800252
253utest-with-coverage: venv protos
254 @ echo "Executing all unit tests and producing coverage results"
255 . ${VENVDIR}/bin/activate && \
Kim Kempf8c2812c2017-10-23 15:07:50 -0700256 for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; \
khenaidoo079a7762017-10-26 21:42:05 -0400257 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400258
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800259itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800260 @ echo "Executing all integration tests"
261 . ${VENVDIR}/bin/activate && \
262 nosetests -s \
263 tests/itests/docutests/build_md_test.py \
264 --exclude-dir=./tests/utests/ \
265 --exclude-dir=./tests/itests/run_as_root/
266
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800267smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800268 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800269 . ${VENVDIR}/bin/activate && \
270 nosetests -s \
271 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800272 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800273
khenaidoo1243ee92017-07-17 15:54:06 -0400274jenkins-test: venv
275 @ echo "Executing jenkins smoke tests"
276 . ${VENVDIR}/bin/activate && \
277 nosetests -s \
278 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
279 --exclude-dir=./tests/itests/run_as_root/
280
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800281
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800282run-as-root-tests:
alshabibeef9b132017-02-02 17:46:51 -0800283 docker run -i --rm -v /cord/incubator/voltha:/voltha --privileged cord/voltha-base env PYTHONPATH=/voltha python /voltha/tests/itests/run_as_root/test_frameio.py
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700284
285flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700286
287# end file