blob: 75cf937b2314fd503e4839ee0616a02b47d82ee6 [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
91 cd $(HOME)/cord/helm-charts; helm upgrade --install onos onos -f configs/onos.yaml -f configs/seba-ponsim.yaml --set onosImage=voltha/voltha-onos:latest
92 touch $@
93
94$(M)/voltha: | $(M)/kafka-running $(M)/onos
95 cd $(HOME)/cord/helm-charts; helm dep up voltha
96 cd $(HOME)/cord/helm-charts; helm upgrade --install voltha -f configs/seba-ponsim.yaml \
97 --set etcd-operator.customResources.createEtcdClusterCRD=false \
98 voltha
99 touch $@
100
101$(M)/etcd-operator-ready: | $(M)/voltha
102 until kubectl api-versions | grep etcd.database.coreos.com/v1beta2; \
103 do \
104 echo "Waiting for etcd.database.coreos.com/v1beta2 to be available"; \
105 sleep 5; \
106 done
107 until kubectl api-resources | grep EtcdCluster; \
108 do \
109 echo "Waiting for EtcdCluster API resource to be available"; \
110 sleep 5; \
111 done
112 touch $@
113
114$(M)/etcd-cluster: | $(M)/etcd-operator-ready
115 cd $(HOME)/cord/helm-charts; helm upgrade voltha -f configs/seba-ponsim.yaml \
116 --set etcd-operator.customResources.createEtcdClusterCRD=true \
117 voltha
118 touch $@
119
120$(M)/voltha-running: | $(M)/etcd-cluster
121 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh voltha
122 touch $@
123
124$(M)/ponsim: | $(M)/voltha-running
125 cd $(HOME)/cord/helm-charts; helm upgrade --install ponnet ponnet
126 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh kube-system
127 cd $(HOME)/cord/helm-charts; helm upgrade --install ponsimv2 ponsimv2 -f configs/seba-ponsim.yaml
128 touch $@
129
130$(M)/pon0_fwd: | $(M)/ponsim
131 echo 8 > /tmp/pon0_group_fwd_mask
132 until sudo cp /tmp/pon0_group_fwd_mask /sys/class/net/pon0/bridge/group_fwd_mask; \
133 do \
134 echo "waiting for pon0..."; \
135 sleep 5; \
136 done
137 rm /tmp/pon0_group_fwd_mask
138 touch $@
139
140$(M)/voltha_ponsim_running: | $(M)/pon0_fwd
141 $(HOME)/cord/helm-charts/scripts/wait_for_pods.sh
142 touch $@
143 echo "Voltha Test Framework Ready!"
144
145$(M)/authenticate: $(M)/voltha_ponsim_running
146 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"
147 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
148 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"
149 touch $@
150
151$(M)/dhclient: $(M)/authenticate
152 sudo iptables -P FORWARD ACCEPT
153 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"
154 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
155 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient -r
156 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- dhclient
157 touch $@
158
159$(M)/pingtest: $(M)/dhclient
160 kubectl -n voltha exec $(shell kubectl -n voltha get pod|grep "^rg-"|cut -d' ' -f1) -- ping -c 3 172.18.0.10
161 touch $@
162
163run-tests: $(M)/pingtest
164
165remove-chart-milestones:
166 cd $(M); sudo rm -f setup kafka kafka-running onos voltha etcd-operator-ready etcd-cluster \
167 pon0_fwd voltha-running ponsim voltha_ponsim_running
168remove-kube-milestones:
169 cd $(M); sudo rm -f kubeadm helm-init
170
171remove-test-milestones:
172 cd $(M); sudo rm -f authenticate dhclient pingtest
173
174teardown-charts: remove-chart-milestones
175 helm delete --purge $(shell helm ls -q)
176
177reset-kubeadm: remove-chart-milestones remove-kube-milestones
178 sudo kubeadm reset -f
179 sudo iptables -F && sudo iptables -t nat -F && sudo iptables -t mangle -F && sudo iptables -X
180