blob: af3436b304571b0edd58c6a7f1f5bea48c3892aa [file] [log] [blame]
Gilles Depatie84cb1e72018-10-26 12:41:33 -04001# Copyright 2017-present Open Networking Foundation
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
15SHELL := /bin/bash
16BUILD ?= /tmp
17M ?= $(BUILD)/milestones
18MYDIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
19
20HELM_VERSION ?= "2.10.0"
21HELM_SHA256SUM ?= "0fa2ed4983b1e4a3f90f776d08b88b0c73fd83f305b5b634175cb15e61342ffe"
22HELM_PLATFORM ?= "linux-amd64"
23
24KAFKA_CHART_VERSION ?= 0.8.8
25
26/all: $(M)/voltha_ponsim_running
27
28$(M)/setup:
29 echo "MYDIR = ${MYDIR}"
30 mkdir -p $(M)
31 sudo apt update
32 sudo apt install -y httpie jq software-properties-common
33 sudo swapoff -a
34 touch $@
35
36/usr/bin/docker: | $(M)/setup
37 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 0EBFCD88
38 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(shell lsb_release -cs) stable"
39 sudo apt update
40 sudo apt install -y "docker-ce=17.06*"
41
42/usr/bin/kubeadm: | $(M)/setup /usr/bin/docker
43 curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
44 echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" > /tmp/kubernetes.list
45 sudo cp /tmp/kubernetes.list /etc/apt/sources.list.d/kubernetes.list
46 sudo apt update
47 sudo apt install -y "kubeadm=1.11.3-*" "kubelet=1.11.3-*" "kubectl=1.11.3-*"
48
49/usr/local/bin/helm:
50 curl -L -o /tmp/helm.tgz "https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-${HELM_PLATFORM}.tar.gz"
51 echo "${HELM_SHA256SUM} /tmp/helm.tgz" | sha256sum -c -
52 cd /tmp; tar -xzvf helm.tgz; sudo mv ${HELM_PLATFORM}/helm /usr/local/bin/helm
53 sudo chmod a+x /usr/local/bin/helm
54 rm -rf /tmp/helm.tgz /tmp/${HELM_PLATFORM}
55
56$(M)/kubeadm: | $(M)/setup /usr/bin/kubeadm
57 sudo kubeadm init --pod-network-cidr=192.168.0.0/16
58 mkdir -p $(HOME)/.kube
59 sudo cp -f /etc/kubernetes/admin.conf $(HOME)/.kube/config
60 sudo chown $(id -u):$(id -g) $(HOME)/.kube/config
61 kubectl apply -f https://docs.projectcalico.org/v2.6/getting-started/kubernetes/installation/hosted/kubeadm/1.6/calico.yaml
62 kubectl taint nodes --all node-role.kubernetes.io/master-
63 touch $@
64
65$(M)/helm-init: | $(M)/kubeadm /usr/local/bin/helm
66 kubectl create serviceaccount --namespace kube-system tiller
67 kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
68 helm init --service-account tiller
69 until helm ls >& /dev/null; \
70 do \
71 echo "Waiting for Helm to be ready"; \
72 sleep 5; \
73 done
74 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
75 touch $@
76
77$(HOME)/cord/helm-charts: | $(M)/setup
78 mkdir -p $(HOME)/cord
79 cd $(HOME)/cord; git clone https://gerrit.opencord.org/helm-charts
Kailash3f4e1c02018-11-14 09:43:48 -080080 cd $(HOME)/cord/helm-charts; git fetch https://gerrit.opencord.org/helm-charts refs/changes/50/11750/7 && git checkout FETCH_HEAD
Gilles Depatie84cb1e72018-10-26 12:41:33 -040081
82$(M)/kafka: | $(HOME)/cord/helm-charts $(M)/helm-init
83 cd $(HOME)/cord/helm-charts && \
84 helm upgrade --install cord-kafka --version $(KAFKA_CHART_VERSION) -f examples/kafka-single.yaml incubator/kafka
85 touch $@
86
87$(M)/kafka-running: | $(M)/kafka
88 kubectl wait pod/cord-kafka-0 --for condition=Ready --timeout=180s
89 touch $@
90
91$(M)/onos: | $(M)/kafka-running
Gilles Depatie53d7b772018-11-09 14:33:35 -050092 cd $(HOME)/cord/helm-charts; helm upgrade --install onos onos -f configs/onos.yaml -f configs/seba-ponsim.yaml --set images.onos.repository=voltha-onos,images.onos.tag=latest,images.onos.pullPolicy=Never
Gilles Depatie84cb1e72018-10-26 12:41:33 -040093 touch $@
94
Kailash3f4e1c02018-11-14 09:43:48 -080095$(M)/voltha: | $(M)/kafka-running $(M)/etcd-operator-ready
Gilles Depatie84cb1e72018-10-26 12:41:33 -040096 cd $(HOME)/cord/helm-charts; helm dep up voltha
Kailash3f4e1c02018-11-14 09:43:48 -080097 cd $(HOME)/cord/helm-charts; helm upgrade --install voltha voltha -f configs/seba-ponsim.yaml --set images.vcore.repository=voltha/voltha-voltha,images.vcore.tag=latest,images.vcore.pullPolicy=Never,images.envoy_for_etcd.repository=voltha/voltha-envoy,images.envoy_for_etcd.tag=latest,images.envoy_for_etcd.pullPolicy=Never,images.netconf.repository=voltha/voltha-netconf,images.netconf.tag=latest,images.netconf.pullPolicy=Never,images.ofagent.repository=voltha/voltha-ofagent,images.ofagent.tag=latest,images.ofagent.pullPolicy=Never,images.vcli.repository=voltha/voltha-cli,images.vcli.tag=latest,images.vcli.pullPolicy=Never
Gilles Depatie84cb1e72018-10-26 12:41:33 -040098 touch $@
99
Kailash3f4e1c02018-11-14 09:43:48 -0800100$(M)/etcd-operator-ready: | $(HOME)/cord/helm-charts $(M)/helm-init
101 cd $(HOME)/cord/helm-charts; helm upgrade --install etcd-operator stable/etcd-operator -f configs/seba-ponsim.yaml
102 until kubectl get crd | grep etcdclusters; \
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400103 do \
Kailash3f4e1c02018-11-14 09:43:48 -0800104 echo "Waiting for etcdclusters CRD to be available"; \
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400105 sleep 5; \
106 done
107 touch $@
108
Kailash3f4e1c02018-11-14 09:43:48 -0800109$(M)/voltha-running: | $(M)/voltha
110 timeout 180s bash -c "until kubectl get pod|grep etcd-cluster|grep 1/1; do echo 'Waiting for etcd-cluster to be ready'; sleep 10; done"
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400111 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh voltha
112 touch $@
113
114$(M)/ponsim: | $(M)/voltha-running
115 cd $(HOME)/cord/helm-charts; helm upgrade --install ponnet ponnet
116 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh kube-system
Gilles Depatie53d7b772018-11-09 14:33:35 -0500117 cd $(HOME)/cord/helm-charts; helm upgrade --install ponsimv2 ponsimv2 -f configs/seba-ponsim.yaml --set images.olt.repository=voltha-ponsim,images.olt.tag=latest,images.olt.pullPolicy=Never,images.onu.repository=voltha-ponsim,images.onu.tag=latest,images.onu.pullPolicy=Never,images.rg.repository=voltha-tester,images.rg.tag=latest,images.rg.pullPolicy=Never
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400118 touch $@
119
120$(M)/pon0_fwd: | $(M)/ponsim
121 echo 8 > /tmp/pon0_group_fwd_mask
122 until sudo cp /tmp/pon0_group_fwd_mask /sys/class/net/pon0/bridge/group_fwd_mask; \
123 do \
124 echo "waiting for pon0..."; \
125 sleep 5; \
126 done
127 rm /tmp/pon0_group_fwd_mask
128 touch $@
129
130$(M)/voltha_ponsim_running: | $(M)/pon0_fwd
131 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh
132 touch $@
133 echo "Voltha Test Framework Ready!"
134
135$(M)/authenticate: $(M)/voltha_ponsim_running
136 timeout 60s bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/att-workflow-driver/attworkflowdriverserviceinstances |jq '.items[0].authentication_state'|grep AWAITING; do echo 'waiting for att-workflow-driver to be in AWAITING state'; sleep 5; done"
137 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- wpa_supplicant -i eth0 -Dwired -c /etc/wpa_supplicant/wpa_supplicant.conf -B
138 timeout 60s bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/att-workflow-driver/attworkflowdriverserviceinstances |jq '.items[0].authentication_state'|grep APPROVED; do echo 'waiting for att-workflow-driver to be in APPROVED state'; sleep 5; done"
139 touch $@
140
141$(M)/dhclient: $(M)/authenticate
142 sudo iptables -P FORWARD ACCEPT
143 timeout 60s bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/fabric-crossconnect/fabriccrossconnectserviceinstances |jq '.items[0].backend_status'|grep OK; do echo 'waiting for fabric-crossconnect to be synchronized';sleep 5; done"
144 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
145 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient -r
146 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
147 touch $@
148
149$(M)/pingtest: $(M)/dhclient
150 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- ping -c 3 172.18.0.10
151 touch $@
152
153run-tests: $(M)/pingtest
154
155remove-chart-milestones:
156 cd $(M); sudo rm -f setup kafka kafka-running onos voltha etcd-operator-ready etcd-cluster \
157 pon0_fwd voltha-running ponsim voltha_ponsim_running
158remove-kube-milestones:
159 cd $(M); sudo rm -f kubeadm helm-init
160
161remove-test-milestones:
162 cd $(M); sudo rm -f authenticate dhclient pingtest
163
164teardown-charts: remove-chart-milestones
165 helm delete --purge $(shell helm ls -q)
166
167reset-kubeadm: remove-chart-milestones remove-kube-milestones
168 sudo kubeadm reset -f
169 sudo iptables -F && sudo iptables -t nat -F && sudo iptables -t mangle -F && sudo iptables -X
170