khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2018 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 | |
| 17 | ifneq ($(VOLTHA_BUILD),docker) |
| 18 | ifeq ($(VOLTHA_BASE)_set,_set) |
| 19 | $(error To get started, please source the env.sh file) |
| 20 | endif |
| 21 | endif |
| 22 | |
| 23 | ifeq ($(TAG),) |
| 24 | TAG := latest |
| 25 | endif |
| 26 | |
| 27 | ifeq ($(TARGET_TAG),) |
| 28 | TARGET_TAG := latest |
| 29 | endif |
| 30 | |
| 31 | # If no DOCKER_HOST_IP is specified grab a v4 IP address associated with |
| 32 | # the default gateway |
| 33 | ifeq ($(DOCKER_HOST_IP),) |
| 34 | DOCKER_HOST_IP := $(shell ifconfig $$(netstat -rn | grep -E '^(default|0.0.0.0)' | head -1 | awk '{print $$NF}') | grep inet | awk '{print $$2}' | sed -e 's/addr://g') |
| 35 | endif |
| 36 | |
| 37 | ifneq ($(http_proxy)$(https_proxy),) |
| 38 | # Include proxies from the environment |
| 39 | DOCKER_PROXY_ARGS = \ |
| 40 | --build-arg http_proxy=$(http_proxy) \ |
| 41 | --build-arg https_proxy=$(https_proxy) \ |
| 42 | --build-arg ftp_proxy=$(ftp_proxy) \ |
| 43 | --build-arg no_proxy=$(no_proxy) \ |
| 44 | --build-arg HTTP_PROXY=$(HTTP_PROXY) \ |
| 45 | --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \ |
| 46 | --build-arg FTP_PROXY=$(FTP_PROXY) \ |
| 47 | --build-arg NO_PROXY=$(NO_PROXY) |
| 48 | endif |
| 49 | |
| 50 | DOCKER_BUILD_ARGS = \ |
| 51 | --build-arg TAG=$(TAG) \ |
| 52 | --build-arg REGISTRY=$(REGISTRY) \ |
| 53 | --build-arg REPOSITORY=$(REPOSITORY) \ |
| 54 | $(DOCKER_PROXY_ARGS) $(DOCKER_CACHE_ARG) \ |
| 55 | --rm --force-rm \ |
| 56 | $(DOCKER_BUILD_EXTRA_ARGS) |
| 57 | |
| 58 | VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]') |
| 59 | |
| 60 | DOCKER_IMAGE_LIST = \ |
| 61 | base \ |
| 62 | protoc \ |
| 63 | protos \ |
| 64 | adapter-ponsim-olt \ |
Matt Jeanneret | f4d4d35 | 2019-02-14 11:26:13 -0500 | [diff] [blame] | 65 | adapter-ponsim-onu |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 66 | |
| 67 | # The following list was scavanged from the compose / stack files as well as |
| 68 | # from the Dockerfiles. If nothing else it highlights that VOLTHA is not |
| 69 | # using consistent versions for some of the containers. |
| 70 | |
| 71 | FETCH_BUILD_IMAGE_LIST = \ |
| 72 | alpine:3.6 \ |
| 73 | centos:7 \ |
| 74 | centurylink/ca-certs:latest \ |
| 75 | grpc/python:latest \ |
| 76 | ubuntu:xenial |
| 77 | |
| 78 | FETCH_COMPOSE_IMAGE_LIST = \ |
| 79 | wurstmeister/kafka:latest \ |
| 80 | wurstmeister/zookeeper:latest |
| 81 | |
| 82 | # find k8s -type f | xargs grep image: | awk '{print $NF}' | sed -e 's/\"//g' | sed '/:.*$/!s/$/:latest/g' | sort -u | sed -e 's/^/ /g' -e 's/$/ \\/g' |
| 83 | # Manually remove some image from this list as they don't reflect the new |
| 84 | # naming conventions for the VOLTHA build |
| 85 | FETCH_K8S_IMAGE_LIST = \ |
| 86 | wurstmeister/kafka:1.0.0 \ |
| 87 | zookeeper:3.4.11 |
| 88 | |
| 89 | FETCH_IMAGE_LIST = $(shell echo $(FETCH_BUILD_IMAGE_LIST) $(FETCH_COMPOSE_IMAGE_LIST) $(FETCH_K8S_IMAGE_LIST) | tr ' ' '\n' | sort -u) |
| 90 | |
Matt Jeanneret | f4d4d35 | 2019-02-14 11:26:13 -0500 | [diff] [blame] | 91 | .PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 base ponsim_olt ponsim_onu protos cli ofagent kafka common start stop tag push pull |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 92 | |
| 93 | # This should to be the first and default target in this Makefile |
| 94 | help: |
| 95 | @echo "Usage: make [<target>]" |
| 96 | @echo "where available targets are:" |
| 97 | @echo |
| 98 | @echo "build : Build the Adapters protos and docker images.\n\ |
| 99 | If this is the first time you are building, choose \"make build\" option." |
| 100 | @echo "clean : Remove files created by the build and tests" |
| 101 | @echo "distclean : Remove venv directory" |
| 102 | @echo "fetch : Pre-fetch artifacts for subsequent local builds" |
| 103 | @echo "help : Print this help" |
| 104 | @echo "protoc : Build a container with protoc installed" |
| 105 | @echo "protos : Compile all grpc/protobuf files" |
| 106 | @echo "rebuild-venv : Rebuild local Python virtualenv from scratch" |
| 107 | @echo "venv : Build local Python virtualenv if did not exist yet" |
| 108 | @echo "containers : Build all the docker containers" |
| 109 | @echo "base : Build the base docker container used by all other dockers" |
| 110 | @echo "adapter_ponsim_olt : Build the ponsim olt adapter docker container" |
| 111 | @echo "adapter_ponsim_onu : Build the ponsim olt adapter docker container" |
Matt Jeanneret | 13643e0 | 2019-01-30 16:49:03 -0500 | [diff] [blame] | 112 | @echo "ofagent : Build the openflow agent docker container" |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 113 | @echo "tag : Tag a set of images" |
| 114 | @echo "push : Push the docker images to an external repository" |
| 115 | @echo "pull : Pull the docker images from a repository" |
| 116 | @echo |
| 117 | |
| 118 | ## New directories can be added here |
| 119 | #DIRS:= |
| 120 | |
| 121 | ## If one directory depends on another directory that |
| 122 | ## dependency can be expressed here |
| 123 | ## |
| 124 | ## For example, if the Tibit directory depended on the eoam |
| 125 | ## directory being built first, then that can be expressed here. |
| 126 | ## driver/tibit: eoam |
| 127 | |
| 128 | # Parallel Build |
| 129 | $(DIRS): |
| 130 | @echo " MK $@" |
| 131 | $(Q)$(MAKE) -C $@ |
| 132 | |
| 133 | # Parallel Clean |
| 134 | DIRS_CLEAN = $(addsuffix .clean,$(DIRS)) |
| 135 | $(DIRS_CLEAN): |
| 136 | @echo " CLEAN $(basename $@)" |
| 137 | $(Q)$(MAKE) -C $(basename $@) clean |
| 138 | |
| 139 | # Parallel Flake8 |
| 140 | DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS)) |
| 141 | $(DIRS_FLAKE8): |
| 142 | @echo " FLAKE8 $(basename $@)" |
| 143 | -$(Q)$(MAKE) -C $(basename $@) flake8 |
| 144 | |
| 145 | build: protoc protos containers |
| 146 | |
Matt Jeanneret | f4d4d35 | 2019-02-14 11:26:13 -0500 | [diff] [blame] | 147 | containers: base adapter_ponsim_olt adapter_ponsim_onu ofagent cli |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 148 | |
| 149 | base: |
| 150 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-base:${TAG} -f docker/Dockerfile.base . |
| 151 | |
| 152 | adapter_ponsim_olt: |
| 153 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-adapter-ponsim-olt:${TAG} -f docker/Dockerfile.adapter_ponsim_olt . |
| 154 | |
| 155 | adapter_ponsim_onu: |
| 156 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-adapter-ponsim-onu:${TAG} -f docker/Dockerfile.adapter_ponsim_onu . |
| 157 | |
Stephane Barbarie | df5479f | 2019-01-29 22:13:00 -0500 | [diff] [blame] | 158 | ofagent: |
| 159 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-ofagent:${TAG} -f docker/Dockerfile.ofagent . |
| 160 | |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 161 | cli: |
| 162 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-cli:${TAG} -f docker/Dockerfile.cli . |
| 163 | |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 164 | tag: $(patsubst %,%.tag,$(DOCKER_IMAGE_LIST)) |
| 165 | |
| 166 | push: tag $(patsubst %,%.push,$(DOCKER_IMAGE_LIST)) |
| 167 | |
| 168 | pull: $(patsubst %,%.pull,$(DOCKER_IMAGE_LIST)) |
| 169 | |
| 170 | %.tag: |
| 171 | docker tag ${REGISTRY}${REPOSITORY}voltha-$(subst .tag,,$@):${TAG} ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .tag,,$@):${TARGET_TAG} |
| 172 | |
| 173 | %.push: |
| 174 | docker push ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .push,,$@):${TARGET_TAG} |
| 175 | |
| 176 | %.pull: |
| 177 | docker pull ${REGISTRY}${REPOSITORY}voltha-$(subst .pull,,$@):${TAG} |
| 178 | |
| 179 | protoc: |
| 180 | ifeq ($(VOLTHA_BUILD),docker) |
| 181 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-protoc:${TAG} -f docker/Dockerfile.protoc . |
| 182 | endif |
| 183 | |
| 184 | protos: |
| 185 | ifneq ($(VOLTHA_BUILD),docker) |
| 186 | make -C protos |
| 187 | else |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 188 | cp ../protos/*.proto ./protos |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 189 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} -f docker/Dockerfile.protos . |
| 190 | endif |
| 191 | |
| 192 | install-protoc: |
| 193 | make -C voltha/protos install-protoc |
| 194 | |
| 195 | clean: |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 196 | find . -name '*.pyc' | xargs rm -f |
| 197 | rm -f ./protos/*_pb2.py |
| 198 | rm -f ./protos/*_pb2_grpc.py |
| 199 | rm -f ./protos/*.desc |
| 200 | rm -f ./protos/*.proto |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 201 | |
| 202 | distclean: clean |
| 203 | rm -rf ${VENVDIR} |
| 204 | |
| 205 | fetch: |
| 206 | @bash -c ' \ |
| 207 | for i in $(FETCH_IMAGE_LIST); do \ |
| 208 | docker pull $$i; \ |
| 209 | done' |
| 210 | |
| 211 | purge-venv: |
| 212 | rm -fr ${VENVDIR} |
| 213 | |
| 214 | rebuild-venv: purge-venv venv |
| 215 | |
| 216 | ifneq ($(VOLTHA_BUILD),docker) |
| 217 | venv: ${VENVDIR}/.built |
| 218 | else |
| 219 | venv: |
| 220 | endif |
| 221 | |
| 222 | ${VENVDIR}/.built: |
| 223 | @ virtualenv ${VENVDIR} |
| 224 | @ . ${VENVDIR}/bin/activate && \ |
| 225 | pip install --upgrade pip; \ |
| 226 | if ! pip install -r requirements.txt; \ |
| 227 | then \ |
| 228 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 229 | echo "see the BUILD.md file for a workaround"; \ |
| 230 | else \ |
| 231 | uname -s > ${VENVDIR}/.built; \ |
| 232 | fi |
| 233 | |
| 234 | |
| 235 | flake8: $(DIRS_FLAKE8) |
| 236 | |
| 237 | # end file |