blob: b8d20525bc4b0c59fcb6d24eb6cd8d47599738cd [file] [log] [blame]
Hyunsun Moon81c8e232019-05-21 03:40:22 -06001SHELL := /bin/bash
2BUILD ?= /tmp/build
3M ?= $(BUILD)/milestones
4MAKEDIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
5SCRIPTDIR := $(MAKEDIR)../scripts
6RESOURCEDIR := $(MAKEDIR)/resources
7WORKSPACE ?= $(HOME)
8VENV ?= $(BUILD)/venv/ciab
9CIABVALUES ?= $(MAKEDIR)/comac-in-a-box-values.yaml
10
Hyunsun Moon07decd42019-08-19 13:59:52 -060011KUBESPRAY_VERSION ?= release-2.11
12DOCKER_VERSION ?= 18.09
13K8S_VERSION ?= v1.15.3
Hyunsun Moon19890ec2019-11-14 17:16:11 -060014HELM_VERSION ?= v2.16.1
Hyunsun Moon81c8e232019-05-21 03:40:22 -060015
16# used to start logging/monitoring and other infrastructure charts
17INFRA_CHARTS ?=
18INFRA_PREREQS = $(foreach chart,$(INFRA_CHARTS),$(M)/$(chart))
19
20KAFKA_CHART_VERSION ?= 0.13.3
21KAFKA_POD := "pod/cord-kafka-0"
22
Hyunsun Moon81c8e232019-05-21 03:40:22 -060023HELM_GLOBAL_ARGS ?=
24HELM_NEM_ARGS ?= $(HELM_GLOBAL_ARGS)
25HELM_ONOS_ARGS ?= $(HELM_GLOBAL_ARGS)
26
27cpu_family := $(shell lscpu | grep 'CPU family:' | awk '{print $$3}')
28cpu_model := $(shell lscpu | grep 'Model:' | awk '{print $$2}')
29os_vendor := $(shell lsb_release -i -s)
Hyunsun Moonad70fc12019-08-02 16:52:19 -060030os_release := $(shell lsb_release -r -s)
Hyunsun Moon81c8e232019-05-21 03:40:22 -060031
Hyunsun Moondea5dbd2019-10-24 20:24:38 -050032ciab: $(M)/system-check $(M)/platform $(M)/omec
33oaisim: $(M)/oaisim
Hyunsun Moon81c8e232019-05-21 03:40:22 -060034
Hyunsun Moondea5dbd2019-10-24 20:24:38 -050035.PHONY: ciab oaisim test reset-test clean
Hyunsun Moon81c8e232019-05-21 03:40:22 -060036
37$(M):
38 mkdir -p $(M)
39
Hyunsun Moon07decd42019-08-19 13:59:52 -060040$(M)/system-check: | $(M)
Hyunsun Moon81c8e232019-05-21 03:40:22 -060041 @if [[ $(cpu_family) -eq 6 ]]; then \
42 if [[ $(cpu_model) -lt 60 ]]; then \
43 echo "FATAL: haswell CPU or newer is required."; \
44 exit 1; \
45 fi \
46 else \
47 echo "FATAL: unsupported CPU family."; \
48 exit 1; \
49 fi
50 @if [[ $(os_vendor) =~ (Ubuntu) ]]; then \
Hyunsun Moonad70fc12019-08-02 16:52:19 -060051 if [[ ! $(os_release) =~ (16.04) ]]; then \
52 echo "WARN: $(os_vendor) $(os_release) has not been tested."; \
53 fi; \
54 if dpkg --compare-versions 4.15 gt $(shell uname -r); then \
55 echo "FATAL: kernel 4.15 or later is required."; \
56 echo "Please upgrade your kernel by running" \
57 "apt install --install-recommends linux-generic-hwe-$(os_release)"; \
58 exit 1; \
Hyunsun Moon81c8e232019-05-21 03:40:22 -060059 fi \
60 else \
61 echo "FAIL: unsupported OS."; \
62 exit 1; \
63 fi
64 touch $@
65
66$(M)/setup: | $(M)
67 sudo $(SCRIPTDIR)/cloudlab-disksetup.sh
68 sudo apt update; sudo apt install -y software-properties-common python-pip jq httpie ipvsadm
69 touch $@
70
71$(BUILD)/kubespray: | $(M)/setup
72 mkdir -p $(BUILD)
73 cd $(BUILD); git clone https://github.com/kubernetes-incubator/kubespray.git -b $(KUBESPRAY_VERSION)
74
75$(VENV)/bin/activate: | $(M)/setup
76 sudo pip install virtualenv
Woojoong Kim42811fa2020-02-12 12:27:46 -080077 virtualenv $(VENV)
Hyunsun Moon81c8e232019-05-21 03:40:22 -060078
79$(M)/kubespray-requirements: $(BUILD)/kubespray | $(VENV)/bin/activate
80 source "$(VENV)/bin/activate" && \
81 pip install -r $(BUILD)/kubespray/requirements.txt
82 touch $@
83
84$(M)/k8s-ready: | $(M)/setup $(BUILD)/kubespray $(VENV)/bin/activate $(M)/kubespray-requirements
85 source "$(VENV)/bin/activate" && cd $(BUILD)/kubespray; \
86 ansible-playbook -b -i inventory/local/hosts.ini \
87 -e "{'override_system_hostname' : False, 'disable_swap' : True}" \
88 -e "{'docker_version' : $(DOCKER_VERSION)}" \
89 -e "{'docker_iptables_enabled' : True}" \
90 -e "{'kube_version' : $(K8S_VERSION)}" \
Hyunsun Moon5d179d42019-08-12 14:18:19 -050091 -e "{'kube_network_plugin_multus' : True, 'multus_version' : stable}" \
Hyunsun Moon5aaf5432019-11-11 15:35:40 -070092 -e "{'kube_proxy_metrics_bind_address' : 0.0.0.0:10249}" \
Hyunsun Moon81c8e232019-05-21 03:40:22 -060093 -e "{'kube_pods_subnet' : 192.168.0.0/17, 'kube_service_addresses' : 192.168.128.0/17}" \
94 -e "{'kube_apiserver_node_port_range' : 2000-36767}" \
95 -e "{'kubeadm_enabled': True}" \
96 -e "{'kube_feature_gates' : [SCTPSupport=True]}" \
97 -e "{'kubelet_custom_flags' : [--allowed-unsafe-sysctls=net.*]}" \
98 -e "{'dns_min_replicas' : 1}" \
99 -e "{'helm_enabled' : True, 'helm_version' : $(HELM_VERSION)}" \
100 cluster.yml
101 mkdir -p $(HOME)/.kube
102 sudo cp -f /etc/kubernetes/admin.conf $(HOME)/.kube/config
103 sudo chown $(shell id -u):$(shell id -g) $(HOME)/.kube/config
104 kubectl wait pod -n kube-system --for=condition=Ready --all
105 touch $@
106
107$(M)/helm-ready: | $(M)/k8s-ready
108 helm init --wait --client-only
109 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
110 helm repo add cord https://charts.opencord.org
111 touch $@
112
113$(WORKSPACE)/cord/helm-charts: | $(M)/setup
114 mkdir -p $(WORKSPACE)/cord
115 cd $(WORKSPACE)/cord; git clone https://gerrit.opencord.org/helm-charts
116
Doyoung Lee9b0973f2019-08-20 14:47:59 -0700117$(WORKSPACE)/cord/cord-platform: | $(M)/setup
118 mkdir -p $(WORKSPACE)/cord
119 cd $(WORKSPACE)/cord; git clone https://gerrit.opencord.org/cord-platform
120
Hyunsun Moondea5dbd2019-10-24 20:24:38 -0500121$(M)/platform: | $(M)/helm-ready $(WORKSPACE)/cord/helm-charts $(WORKSPACE)/cord/cord-platform
Doyoung Lee9b0973f2019-08-20 14:47:59 -0700122 cd $(WORKSPACE)/cord/cord-platform && \
123 helm dep update cord-platform && \
Hyunsun Moon19890ec2019-11-14 17:16:11 -0600124 helm upgrade --install $(HELM_GLOBAL_ARGS) cord-platform cord-platform -f $(CIABVALUES)
Hyunsun Moondea5dbd2019-10-24 20:24:38 -0500125 cd $(WORKSPACE)/cord/helm-charts && \
126 helm dep update comac && \
Hyunsun Moon19890ec2019-11-14 17:16:11 -0600127 helm upgrade --install $(HELM_GLOBAL_ARGS) comac comac -f $(CIABVALUES)
Doyoung Lee9b0973f2019-08-20 14:47:59 -0700128 touch $@
129
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600130/opt/cni/bin/simpleovs: | $(M)/k8s-ready
131 sudo cp $(RESOURCEDIR)/simpleovs /opt/cni/bin/
132
Hyunsun Moon07decd42019-08-19 13:59:52 -0600133/opt/cni/bin/static: | $(M)/k8s-ready
134 mkdir -p $(BUILD)/cni-plugins; cd $(BUILD)/cni-plugins; \
135 wget https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-linux-amd64-v0.8.2.tgz && \
136 tar xvfz cni-plugins-linux-amd64-v0.8.2.tgz
137 sudo cp $(BUILD)/cni-plugins/static /opt/cni/bin/
138
Hyunsun Moon89886f12019-09-05 22:16:09 -0600139# TODO: need to connect ONOS
140$(M)/fabric: | $(M)/setup /opt/cni/bin/simpleovs
141 sudo apt install -y openvswitch-switch
142 sudo ovs-vsctl --may-exist add-br br-s1u-net
143 sudo ovs-vsctl --may-exist add-port br-s1u-net s1u-enb -- set Interface s1u-enb type=internal
Hyunsun Moon7f3c0a82020-01-30 15:43:35 -0800144 sudo ip addr add 192.168.251.4/24 dev s1u-enb || true
Hyunsun Moon89886f12019-09-05 22:16:09 -0600145 sudo ip link set s1u-enb up
Hyunsun Moon89886f12019-09-05 22:16:09 -0600146 kubectl apply -f $(RESOURCEDIR)/router.yaml
Doyoung Lee1bb116d2019-09-09 17:29:24 -0700147 kubectl wait pod -n default --for=condition=Ready -l app=router --timeout=300s
Hyunsun Moon7f3c0a82020-01-30 15:43:35 -0800148 kubectl -n default exec router ip route add 10.250.0.0/16 via 192.168.250.3
Hyunsun Moon89886f12019-09-05 22:16:09 -0600149 kubectl delete net-attach-def sgi-net
150 touch $@
151
152$(M)/omec: | $(M)/helm-ready $(WORKSPACE)/cord/helm-charts /opt/cni/bin/simpleovs /opt/cni/bin/static $(M)/fabric
Hyunsun Moon07decd42019-08-19 13:59:52 -0600153 cd $(WORKSPACE)/cord/helm-charts/omec; \
154 helm dep up omec-data-plane && \
155 helm dep up omec-control-plane && \
Hyunsun Moon19890ec2019-11-14 17:16:11 -0600156 helm upgrade --install $(HELM_GLOBAL_ARGS) --namespace omec omec-data-plane omec-data-plane -f $(CIABVALUES) && \
157 helm upgrade --install $(HELM_GLOBAL_ARGS) --namespace omec omec-control-plane omec-control-plane -f $(CIABVALUES)
Hyunsun Moonb9d3f482019-09-07 16:38:28 -0600158 $(WORKSPACE)/cord/helm-charts/scripts/wait_for_pods.sh omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600159 touch $@
160
161# UE images includes kernel module, ue_ip.ko
162# which should be built in the exactly same kernel version of the host machine
163$(BUILD)/openairinterface: | $(M)/setup
164 mkdir -p $(BUILD)
165 cd $(BUILD); git clone https://github.com/opencord/openairinterface.git
166
167$(M)/ue-image: | $(M)/k8s-ready $(BUILD)/openairinterface
168 cd $(BUILD)/openairinterface; \
169 sudo docker build . --target lte-uesoftmodem \
170 --build-arg build_base=omecproject/oai-base:1.0.0 \
171 --file Dockerfile.ue \
172 --tag omecproject/lte-uesoftmodem:1.0.0
173 touch $@
174
Hyunsun Moondea5dbd2019-10-24 20:24:38 -0500175$(M)/oaisim: | $(M)/ue-image $(M)/omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600176 sudo ip addr add 127.0.0.2/8 dev lo || true
177 $(eval mme_iface=$(shell ip -4 route list default | awk -F 'dev' '{ print $$2; exit }' | awk '{ print $$1 }'))
178 cd $(WORKSPACE)/cord/helm-charts; \
Hyunsun Moon19890ec2019-11-14 17:16:11 -0600179 helm upgrade --install $(HELM_GLOBAL_ARGS) --namespace omec oaisim oaisim -f $(CIABVALUES) \
Hyunsun Moon07decd42019-08-19 13:59:52 -0600180 --set config.enb.networks.s1_mme.interface=$(mme_iface)
Hyunsun Moonb9d3f482019-09-07 16:38:28 -0600181 $(WORKSPACE)/cord/helm-charts/scripts/wait_for_pods.sh omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600182 @timeout 60s bash -c \
183 "until ip addr show oip1 | grep -q inet; \
184 do \
185 echo 'Waiting for UE 1 gets IP address'; \
186 sleep 3; \
187 done"
188 touch $@
189
Hyunsun Moon89886f12019-09-05 22:16:09 -0600190test: | $(M)/fabric $(M)/omec $(M)/oaisim
Hyunsun Moon07decd42019-08-19 13:59:52 -0600191 @timeout 120s bash -c \
Hyunsun Moon7f3c0a82020-01-30 15:43:35 -0800192 "until timeout 3 ping -I oip1 192.168.250.250 -c 1 > /dev/null 2>&1; do \
Hyunsun Moon9f8b5952019-08-13 19:03:47 -0600193 echo 'Waiting for DP to be ready'; \
194 done"
Woojoong Kim68b57e72019-10-16 14:19:55 -0700195 @echo "Test1: ping from UE to SGI network gateway"
Hyunsun Moon7f3c0a82020-01-30 15:43:35 -0800196 ping -I oip1 192.168.250.250 -c 3
Woojoong Kim68b57e72019-10-16 14:19:55 -0700197 @echo "Test2: ping from UE to 8.8.8.8"
198 ping -I oip1 8.8.8.8 -c 3
199 @echo "Test3: ping from UE to opennetworking.org and google.com"
200 ping -I oip1 opennetworking.org -c 3
201 ping -I oip1 google.com -c 3
202 @echo "Finished to test"
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600203
204reset-test:
Hyunsun Moonad70fc12019-08-02 16:52:19 -0600205 helm delete --purge oaisim || true
Hyunsun Moon07decd42019-08-19 13:59:52 -0600206 helm delete --purge omec-control-plane || true
207 helm delete --purge omec-data-plane || true
Hyunsun Moon89886f12019-09-05 22:16:09 -0600208 cd $(M); rm -f oaisim omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600209
210clean: reset-test
211 helm delete --purge $(shell helm ls -q) || true
Hyunsun Moonb9d3f482019-09-07 16:38:28 -0600212 kubectl delete po router || true
213 kubectl delete net-attach-def sgi-net || true
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600214 sudo ovs-vsctl del-br br-s1u-net || true
215 sudo ovs-vsctl del-br br-sgi-net || true
216 sudo apt remove --purge openvswitch-switch -y
217 source "$(VENV)/bin/activate" && cd $(BUILD)/kubespray; \
218 ansible-playbook -b -i inventory/local/hosts.ini reset.yml
219 @if [ -d /usr/local/etc/emulab ]; then \
220 mount | grep /mnt/extra/kubelet/pods | cut -d" " -f3 | sudo xargs umount; \
221 sudo rm -rf /mnt/extra/kubelet; \
222 fi
223 rm -rf $(M)