blob: f18c6c214c73b5590f57397973e3c59b8aebb24d [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
80
81$(M)/kafka: | $(HOME)/cord/helm-charts $(M)/helm-init
82 cd $(HOME)/cord/helm-charts && \
83 helm upgrade --install cord-kafka --version $(KAFKA_CHART_VERSION) -f examples/kafka-single.yaml incubator/kafka
84 touch $@
85
86$(M)/kafka-running: | $(M)/kafka
87 kubectl wait pod/cord-kafka-0 --for condition=Ready --timeout=180s
88 touch $@
89
90$(M)/onos: | $(M)/kafka-running
Kailash Khalasi200f3df2018-12-13 07:12:30 -080091 cd $(HOME)/cord/helm-charts; helm upgrade --install onos onos -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 -040092 touch $@
93
Gilles Depatie23faed02018-11-22 13:53:23 -050094$(M)/voltha: | $(M)/kafka-running $(M)/etcd-operator-ready $(M)/onos
Gilles Depatie84cb1e72018-10-26 12:41:33 -040095 cd $(HOME)/cord/helm-charts; helm dep up voltha
Gilles Depatie23faed02018-11-22 13:53:23 -050096 cd $(HOME)/cord/helm-charts; helm upgrade --install voltha voltha -f configs/seba-ponsim.yaml --set images.vcore.repository=voltha-voltha,images.vcore.tag=latest,images.vcore.pullPolicy=Never,images.envoy_for_etcd.repository=voltha-envoy,images.envoy_for_etcd.tag=latest,images.envoy_for_etcd.pullPolicy=Never,images.netconf.repository=voltha-netconf,images.netconf.tag=latest,images.netconf.pullPolicy=Never,images.ofagent.repository=voltha-ofagent,images.ofagent.tag=latest,images.ofagent.pullPolicy=Never,images.vcli.repository=voltha-cli,images.vcli.tag=latest,images.vcli.pullPolicy=Never
Gilles Depatie84cb1e72018-10-26 12:41:33 -040097 touch $@
98
Kailash3f4e1c02018-11-14 09:43:48 -080099$(M)/etcd-operator-ready: | $(HOME)/cord/helm-charts $(M)/helm-init
100 cd $(HOME)/cord/helm-charts; helm upgrade --install etcd-operator stable/etcd-operator -f configs/seba-ponsim.yaml
101 until kubectl get crd | grep etcdclusters; \
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400102 do \
Kailash3f4e1c02018-11-14 09:43:48 -0800103 echo "Waiting for etcdclusters CRD to be available"; \
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400104 sleep 5; \
105 done
106 touch $@
107
Kailash3f4e1c02018-11-14 09:43:48 -0800108$(M)/voltha-running: | $(M)/voltha
109 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 -0400110 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh voltha
111 touch $@
112
113$(M)/ponsim: | $(M)/voltha-running
114 cd $(HOME)/cord/helm-charts; helm upgrade --install ponnet ponnet
115 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh kube-system
Gilles Depatie53d7b772018-11-09 14:33:35 -0500116 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 -0400117 touch $@
118
119$(M)/pon0_fwd: | $(M)/ponsim
120 echo 8 > /tmp/pon0_group_fwd_mask
121 until sudo cp /tmp/pon0_group_fwd_mask /sys/class/net/pon0/bridge/group_fwd_mask; \
122 do \
123 echo "waiting for pon0..."; \
124 sleep 5; \
125 done
126 rm /tmp/pon0_group_fwd_mask
127 touch $@
Gilles Depatie1be639b2018-12-06 10:51:08 -0500128
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400129$(M)/voltha_ponsim_running: | $(M)/pon0_fwd
130 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh
Gilles Depatie1be639b2018-12-06 10:51:08 -0500131 until http -a karaf:karaf --ignore-stdin --check-status GET http://127.0.0.1:30120/onos/v1/configuration/org.opencord.olt.impl.Olt; \
132 do \
133 sleep 5; \
134 done
135 http -a karaf:karaf --ignore-stdin POST http://127.0.0.1:30120/onos/v1/configuration/org.opencord.olt.impl.Olt defaultVlan=65535
136 timeout 1m bash -c "until http GET http://127.0.0.1:30125/health|jq '.state'|grep -q HEALTHY; do echo 'Waiting for VOLTHA to be HEALTHY'; sleep 10; done"
137 echo "[passed] VOLTHA is HEALTHY"
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400138 touch $@
139 echo "Voltha Test Framework Ready!"
140
141$(M)/authenticate: $(M)/voltha_ponsim_running
142 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"
143 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
144 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"
145 touch $@
146
147$(M)/dhclient: $(M)/authenticate
148 sudo iptables -P FORWARD ACCEPT
149 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"
150 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
151 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient -r
152 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
153 touch $@
154
155$(M)/pingtest: $(M)/dhclient
156 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- ping -c 3 172.18.0.10
157 touch $@
158
159run-tests: $(M)/pingtest
160
161remove-chart-milestones:
162 cd $(M); sudo rm -f setup kafka kafka-running onos voltha etcd-operator-ready etcd-cluster \
Gilles Depatie1be639b2018-12-06 10:51:08 -0500163 voltha-running ponsim pon0_fwd voltha_ponsim_running
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400164remove-kube-milestones:
165 cd $(M); sudo rm -f kubeadm helm-init
166
167remove-test-milestones:
168 cd $(M); sudo rm -f authenticate dhclient pingtest
169
170teardown-charts: remove-chart-milestones
171 helm delete --purge $(shell helm ls -q)
172
173reset-kubeadm: remove-chart-milestones remove-kube-milestones
174 sudo kubeadm reset -f
175 sudo iptables -F && sudo iptables -t nat -F && sudo iptables -t mangle -F && sudo iptables -X
176