blob: f2ad5465565418079963be499ef2697a1b420b0f [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 Moon311493f2020-06-22 14:00:03 -070032ciab: $(M)/system-check $(M)/omec
Hyunsun Moondea5dbd2019-10-24 20:24:38 -050033oaisim: $(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)}" \
Hyunsunde7fc2d2020-03-16 20:33:04 -050091 -e "{'kube_network_plugin_multus' : True, 'multus_version' : v3.2}" \
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
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600113/opt/cni/bin/simpleovs: | $(M)/k8s-ready
114 sudo cp $(RESOURCEDIR)/simpleovs /opt/cni/bin/
115
Hyunsun Moon07decd42019-08-19 13:59:52 -0600116/opt/cni/bin/static: | $(M)/k8s-ready
117 mkdir -p $(BUILD)/cni-plugins; cd $(BUILD)/cni-plugins; \
118 wget https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-linux-amd64-v0.8.2.tgz && \
119 tar xvfz cni-plugins-linux-amd64-v0.8.2.tgz
120 sudo cp $(BUILD)/cni-plugins/static /opt/cni/bin/
121
Hyunsun Moon89886f12019-09-05 22:16:09 -0600122# TODO: need to connect ONOS
Hyunsun Moon2dbf7bd2020-04-27 14:29:17 -0600123$(M)/fabric: | $(M)/setup /opt/cni/bin/simpleovs /opt/cni/bin/static
Hyunsun Moon89886f12019-09-05 22:16:09 -0600124 sudo apt install -y openvswitch-switch
Hyunsun Moon534c7962020-06-21 20:40:43 -0500125 sudo ovs-vsctl --may-exist add-br br-enb-net
126 sudo ovs-vsctl --may-exist add-port br-enb-net enb -- set Interface enb type=internal
127 sudo ip addr add 192.168.251.4/24 dev enb || true
128 sudo ip link set enb up
129 sudo ethtool --offload enb tx off
Hyunsun Moon311493f2020-06-22 14:00:03 -0700130 sudo ip route replace 192.168.252.0/24 via 192.168.251.1 dev enb
Hyunsun Moon89886f12019-09-05 22:16:09 -0600131 kubectl apply -f $(RESOURCEDIR)/router.yaml
Doyoung Lee1bb116d2019-09-09 17:29:24 -0700132 kubectl wait pod -n default --for=condition=Ready -l app=router --timeout=300s
Hyunsun Moon7f3c0a82020-01-30 15:43:35 -0800133 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 -0600134 kubectl delete net-attach-def sgi-net
135 touch $@
136
Hyunsun Moon311493f2020-06-22 14:00:03 -0700137$(M)/omec: | $(M)/helm-ready /opt/cni/bin/simpleovs /opt/cni/bin/static $(M)/fabric
Hyunsun Moon0c2ab562020-06-28 19:49:18 -0700138 helm repo update
Hyunsun Moon534c7962020-06-21 20:40:43 -0500139 helm upgrade --install $(HELM_GLOBAL_ARGS) \
140 --namespace omec \
141 --values $(CIABVALUES) \
142 omec-control-plane \
143 cord/omec-control-plane && \
Hyunsun Moon311493f2020-06-22 14:00:03 -0700144 kubectl rollout status -n omec statefulset spgwc && \
Hyunsun Moon534c7962020-06-21 20:40:43 -0500145 helm upgrade --install $(HELM_GLOBAL_ARGS) \
146 --namespace omec \
147 --values $(CIABVALUES) \
148 omec-user-plane \
149 cord/omec-user-plane && \
Hyunsun Moon311493f2020-06-22 14:00:03 -0700150 kubectl rollout status -n omec statefulset spgwu
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600151 touch $@
152
153# UE images includes kernel module, ue_ip.ko
154# which should be built in the exactly same kernel version of the host machine
155$(BUILD)/openairinterface: | $(M)/setup
156 mkdir -p $(BUILD)
157 cd $(BUILD); git clone https://github.com/opencord/openairinterface.git
158
159$(M)/ue-image: | $(M)/k8s-ready $(BUILD)/openairinterface
160 cd $(BUILD)/openairinterface; \
161 sudo docker build . --target lte-uesoftmodem \
162 --build-arg build_base=omecproject/oai-base:1.0.0 \
163 --file Dockerfile.ue \
164 --tag omecproject/lte-uesoftmodem:1.0.0
165 touch $@
166
Hyunsun Moondea5dbd2019-10-24 20:24:38 -0500167$(M)/oaisim: | $(M)/ue-image $(M)/omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600168 sudo ip addr add 127.0.0.2/8 dev lo || true
169 $(eval mme_iface=$(shell ip -4 route list default | awk -F 'dev' '{ print $$2; exit }' | awk '{ print $$1 }'))
Hyunsun Moon311493f2020-06-22 14:00:03 -0700170 helm upgrade --install $(HELM_GLOBAL_ARGS) --namespace omec oaisim cord/oaisim -f $(CIABVALUES) \
Hyunsun Moon07decd42019-08-19 13:59:52 -0600171 --set config.enb.networks.s1_mme.interface=$(mme_iface)
Hyunsun Moon311493f2020-06-22 14:00:03 -0700172 kubectl rollout status -n omec statefulset ue
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600173 @timeout 60s bash -c \
174 "until ip addr show oip1 | grep -q inet; \
175 do \
176 echo 'Waiting for UE 1 gets IP address'; \
177 sleep 3; \
178 done"
179 touch $@
180
Hyunsun Moon89886f12019-09-05 22:16:09 -0600181test: | $(M)/fabric $(M)/omec $(M)/oaisim
Hyunsun Moon311493f2020-06-22 14:00:03 -0700182 @sleep 5
Woojoong Kim68b57e72019-10-16 14:19:55 -0700183 @echo "Test1: ping from UE to SGI network gateway"
Hyunsun Moon534c7962020-06-21 20:40:43 -0500184 ping -I oip1 192.168.250.1 -c 3
Woojoong Kim68b57e72019-10-16 14:19:55 -0700185 @echo "Test2: ping from UE to 8.8.8.8"
186 ping -I oip1 8.8.8.8 -c 3
Woojoong Kim68b57e72019-10-16 14:19:55 -0700187 ping -I oip1 google.com -c 3
188 @echo "Finished to test"
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600189
190reset-test:
Hyunsun Moonad70fc12019-08-02 16:52:19 -0600191 helm delete --purge oaisim || true
Hyunsun Moon07decd42019-08-19 13:59:52 -0600192 helm delete --purge omec-control-plane || true
Hyunsun Moon534c7962020-06-21 20:40:43 -0500193 helm delete --purge omec-user-plane || true
Hyunsun Moon89886f12019-09-05 22:16:09 -0600194 cd $(M); rm -f oaisim omec
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600195
196clean: reset-test
197 helm delete --purge $(shell helm ls -q) || true
Hyunsun Moonb9d3f482019-09-07 16:38:28 -0600198 kubectl delete po router || true
199 kubectl delete net-attach-def sgi-net || true
Hyunsun Moon81c8e232019-05-21 03:40:22 -0600200 sudo ovs-vsctl del-br br-s1u-net || true
201 sudo ovs-vsctl del-br br-sgi-net || true
202 sudo apt remove --purge openvswitch-switch -y
203 source "$(VENV)/bin/activate" && cd $(BUILD)/kubespray; \
204 ansible-playbook -b -i inventory/local/hosts.ini reset.yml
205 @if [ -d /usr/local/etc/emulab ]; then \
206 mount | grep /mnt/extra/kubelet/pods | cut -d" " -f3 | sudo xargs umount; \
207 sudo rm -rf /mnt/extra/kubelet; \
208 fi
209 rm -rf $(M)