blob: e79d27a34fd5fbc368f71bcab0a30f9172e88172 [file] [log] [blame]
Jeremy Ronquillo5263c732020-10-13 09:42:19 -07001# Copyright 2018-present Open Networking Foundation
2#
3# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -07005SHELL := /bin/bash
6BUILD ?= /tmp/build
7M ?= $(BUILD)/milestones
8MAKEDIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
Jeremy Ronquilloaf084f32020-08-24 13:18:47 -07009SCRIPTDIR := $(MAKEDIR)/scripts
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070010RESOURCEDIR := $(MAKEDIR)/resources
11WORKSPACE ?= $(HOME)
Jeremy Ronquillod3cab742020-08-24 11:49:00 -070012VENV ?= $(BUILD)/venv/aiab
Andy Bavierebf479c2021-09-08 15:47:58 -070013
144G_CORE_VALUES ?= $(MAKEDIR)/4g-core-values.yaml
155G_CORE_VALUES ?= $(MAKEDIR)/5g-core-values.yaml
16OAISIM_VALUES ?= $(MAKEDIR)/oaisim-values.yaml
17ROC_VALUES ?= $(MAKEDIR)/roc-values.yaml
18UPF_VALUES ?= $(MAKEDIR)/upf-values.yaml
19RANSIM_VALUES ?= $(MAKEDIR)/ransim-values.yaml
20ROC_4G_MODELS ?= $(MAKEDIR)/roc-4g-models.json
21ROC_5G_MODELS ?= $(MAKEDIR)/roc-5g-models.json
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070022
Hyunsun Moon8c3fe402021-10-04 18:06:07 -070023KUBESPRAY_VERSION ?= release-2.17
24DOCKER_VERSION ?= '20.10'
25K8S_VERSION ?= v1.20.11
26HELM_VERSION ?= v3.6.3
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070027
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070028HELM_GLOBAL_ARGS ?=
Andy Baviereda466b2021-08-27 15:00:36 -070029
30# Allow installing local charts or specific versions of published charts.
31# E.g., to install the Aether 1.5 release:
32# CHARTS=release-1.5 make test
33# Default is to install from the local charts.
34CHARTS ?= local
35CONFIGFILE := configs/$(CHARTS)
36include $(CONFIGFILE)
37include configs/authentication
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070038
39cpu_family := $(shell lscpu | grep 'CPU family:' | awk '{print $$3}')
40cpu_model := $(shell lscpu | grep 'Model:' | awk '{print $$2}')
41os_vendor := $(shell lsb_release -i -s)
42os_release := $(shell lsb_release -r -s)
43
Badhrinath3e081e22020-12-02 15:02:08 -060044omec: $(M)/system-check $(M)/omec
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070045oaisim: $(M)/oaisim
Badhrinath3e081e22020-12-02 15:02:08 -0600465gc: $(M)/system-check $(M)/5g-core
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070047
Badhrinath3e081e22020-12-02 15:02:08 -060048.PHONY: omec oaisim 5gc test reset-test 5g-core reset-5g-test clean
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070049
50$(M):
51 mkdir -p $(M)
52
53$(M)/system-check: | $(M)
54 @if [[ $(cpu_family) -eq 6 ]]; then \
55 if [[ $(cpu_model) -lt 60 ]]; then \
56 echo "FATAL: haswell CPU or newer is required."; \
57 exit 1; \
58 fi \
59 else \
60 echo "FATAL: unsupported CPU family."; \
61 exit 1; \
62 fi
63 @if [[ $(os_vendor) =~ (Ubuntu) ]]; then \
Hyunsun7b640512020-10-27 19:49:51 -050064 if [[ ! $(os_release) =~ (18.04) ]]; then \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070065 echo "WARN: $(os_vendor) $(os_release) has not been tested."; \
66 fi; \
67 if dpkg --compare-versions 4.15 gt $(shell uname -r); then \
68 echo "FATAL: kernel 4.15 or later is required."; \
69 echo "Please upgrade your kernel by running" \
70 "apt install --install-recommends linux-generic-hwe-$(os_release)"; \
71 exit 1; \
72 fi \
73 else \
74 echo "FAIL: unsupported OS."; \
75 exit 1; \
76 fi
Hyunsun7b640512020-10-27 19:49:51 -050077 @if [[ ! -d "$(WORKSPACE)/cord/aether-helm-charts" ]]; then \
78 echo "FATAL: Please clone aether-helm-charts under $(WORKSPACE)/cord directory."; \
79 exit 1; \
80 fi
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070081 touch $@
82
83$(M)/setup: | $(M)
84 sudo $(SCRIPTDIR)/cloudlab-disksetup.sh
Hyunsun Moon82e47c22021-06-28 12:30:20 -050085 sudo apt update; sudo apt install -y software-properties-common python3 python3-pip python3-venv jq httpie ipvsadm
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070086 touch $@
87
88$(BUILD)/kubespray: | $(M)/setup
89 mkdir -p $(BUILD)
90 cd $(BUILD); git clone https://github.com/kubernetes-incubator/kubespray.git -b $(KUBESPRAY_VERSION)
91
92$(VENV)/bin/activate: | $(M)/setup
Hyunsun Moon82e47c22021-06-28 12:30:20 -050093 python3 -m venv $(VENV)
Wei-Yu Chen7edb7e72021-07-28 11:37:55 +080094 source "$(VENV)/bin/activate" && \
95 python -m pip install -U pip && \
96 deactivate
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -070097
98$(M)/kubespray-requirements: $(BUILD)/kubespray | $(VENV)/bin/activate
99 source "$(VENV)/bin/activate" && \
100 pip install -r $(BUILD)/kubespray/requirements.txt
101 touch $@
102
103$(M)/k8s-ready: | $(M)/setup $(BUILD)/kubespray $(VENV)/bin/activate $(M)/kubespray-requirements
104 source "$(VENV)/bin/activate" && cd $(BUILD)/kubespray; \
105 ansible-playbook -b -i inventory/local/hosts.ini \
106 -e "{'override_system_hostname' : False, 'disable_swap' : True}" \
107 -e "{'docker_version' : $(DOCKER_VERSION)}" \
108 -e "{'docker_iptables_enabled' : True}" \
109 -e "{'kube_version' : $(K8S_VERSION)}" \
Hyunsun84f0f172020-09-23 15:40:08 -0500110 -e "{'kube_network_plugin_multus' : True, 'multus_version' : stable, 'multus_cni_version' : 0.3.1}" \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700111 -e "{'kube_proxy_metrics_bind_address' : 0.0.0.0:10249}" \
112 -e "{'kube_pods_subnet' : 192.168.0.0/17, 'kube_service_addresses' : 192.168.128.0/17}" \
113 -e "{'kube_apiserver_node_port_range' : 2000-36767}" \
114 -e "{'kubeadm_enabled': True}" \
115 -e "{'kube_feature_gates' : [SCTPSupport=True]}" \
116 -e "{'kubelet_custom_flags' : [--allowed-unsafe-sysctls=net.*]}" \
117 -e "{'dns_min_replicas' : 1}" \
118 -e "{'helm_enabled' : True, 'helm_version' : $(HELM_VERSION)}" \
119 cluster.yml
120 mkdir -p $(HOME)/.kube
121 sudo cp -f /etc/kubernetes/admin.conf $(HOME)/.kube/config
122 sudo chown $(shell id -u):$(shell id -g) $(HOME)/.kube/config
123 kubectl wait pod -n kube-system --for=condition=Ready --all
124 touch $@
125
126$(M)/helm-ready: | $(M)/k8s-ready
Woojoong Kim8425cb32021-01-08 16:18:53 -0800127 helm repo add incubator https://charts.helm.sh/incubator
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700128 helm repo add cord https://charts.opencord.org
Andy Baviereda466b2021-08-27 15:00:36 -0700129 helm repo add atomix https://charts.atomix.io
130 helm repo add onosproject https://charts.onosproject.org
131 if [ "$(REPO_PASSWORD)" ]; then \
132 helm repo add aether --username ${REPO_USERNAME} --password ${REPO_PASSWORD} https://charts.aetherproject.org; \
Andy Baviereda466b2021-08-27 15:00:36 -0700133 fi
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700134 touch $@
135
136/opt/cni/bin/simpleovs: | $(M)/k8s-ready
137 sudo cp $(RESOURCEDIR)/simpleovs /opt/cni/bin/
138
139/opt/cni/bin/static: | $(M)/k8s-ready
140 mkdir -p $(BUILD)/cni-plugins; cd $(BUILD)/cni-plugins; \
141 wget https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-linux-amd64-v0.8.2.tgz && \
142 tar xvfz cni-plugins-linux-amd64-v0.8.2.tgz
143 sudo cp $(BUILD)/cni-plugins/static /opt/cni/bin/
144
145# TODO: need to connect ONOS
146$(M)/fabric: | $(M)/setup /opt/cni/bin/simpleovs /opt/cni/bin/static
147 sudo apt install -y openvswitch-switch
148 sudo ovs-vsctl --may-exist add-br br-enb-net
149 sudo ovs-vsctl --may-exist add-port br-enb-net enb -- set Interface enb type=internal
150 sudo ip addr add 192.168.251.4/24 dev enb || true
151 sudo ip link set enb up
152 sudo ethtool --offload enb tx off
153 sudo ip route replace 192.168.252.0/24 via 192.168.251.1 dev enb
154 kubectl apply -f $(RESOURCEDIR)/router.yaml
155 kubectl wait pod -n default --for=condition=Ready -l app=router --timeout=300s
Andy Baviereda466b2021-08-27 15:00:36 -0700156 kubectl -n default exec router -- ip route add 172.250.0.0/16 via 192.168.250.3
Jeremy Ronquilloaf084f32020-08-24 13:18:47 -0700157 kubectl delete net-attach-def core-net
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700158 touch $@
159
Andy Bavierebf479c2021-09-08 15:47:58 -0700160auth-secret: $(RESOURCEDIR)/aether.registry.yaml
161$(RESOURCEDIR)/aether.registry.yaml: configs/authentication
Andy Baviereda466b2021-08-27 15:00:36 -0700162 kubectl -n omec create secret docker-registry aether.registry \
163 --docker-server=https://registry.aetherproject.org \
164 --docker-username=${REGISTRY_USERNAME} \
165 --docker-password=${REGISTRY_CLI_SECRET} \
166 --dry-run=client --output=yaml > $@
167
168$(M)/omec: | $(M)/helm-ready /opt/cni/bin/simpleovs /opt/cni/bin/static $(M)/fabric $(RESOURCEDIR)/aether.registry.yaml
Scott Baker17b70d12020-09-29 23:26:21 -0700169 kubectl get namespace omec 2> /dev/null || kubectl create namespace omec
Andy Baviereda466b2021-08-27 15:00:36 -0700170 kubectl -n omec get secret aether.registry || kubectl create -f $(RESOURCEDIR)/aether.registry.yaml
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700171 helm repo update
Andy Baviereda466b2021-08-27 15:00:36 -0700172 if [ "$(CHARTS)" == "local" ]; then helm dep up $(OMEC_CONTROL_PLANE_CHART); fi
Andy Bavierebf479c2021-09-08 15:47:58 -0700173 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700174 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700175 --values $(4G_CORE_VALUES) \
176 sim-app \
177 $(OMEC_SUB_PROVISION_CHART) && \
178 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
179 --namespace omec \
180 --values $(4G_CORE_VALUES) \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700181 omec-control-plane \
Andy Baviereda466b2021-08-27 15:00:36 -0700182 $(OMEC_CONTROL_PLANE_CHART) && \
Andy Bavierebf479c2021-09-08 15:47:58 -0700183 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700184 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700185 --values $(UPF_VALUES) \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700186 omec-user-plane \
Andy Bavierebf479c2021-09-08 15:47:58 -0700187 $(OMEC_USER_PLANE_CHART)
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700188 touch $@
189
Andy Baviereda466b2021-08-27 15:00:36 -0700190$(M)/5g-core: | $(M)/helm-ready /opt/cni/bin/simpleovs /opt/cni/bin/static $(M)/fabric $(RESOURCEDIR)/aether.registry.yaml
Badhrinath3e081e22020-12-02 15:02:08 -0600191 kubectl get namespace omec 2> /dev/null || kubectl create namespace omec
Andy Bavierebf479c2021-09-08 15:47:58 -0700192 kubectl -n omec get secret aether.registry || kubectl create -f $(RESOURCEDIR)/aether.registry.yaml
Badhrinath3e081e22020-12-02 15:02:08 -0600193 helm repo update
Andy Baviereda466b2021-08-27 15:00:36 -0700194 if [ "$(CHARTS)" == "local" ]; then helm dep up $(5GC_CONTROL_PLANE_CHART); fi
Andy Bavierebf479c2021-09-08 15:47:58 -0700195 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Badhrinath3e081e22020-12-02 15:02:08 -0600196 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700197 --values $(5G_CORE_VALUES) \
Ajay Lotan Thakur980823b2021-06-23 18:55:05 -0500198 sim-app \
Andy Baviereda466b2021-08-27 15:00:36 -0700199 $(OMEC_SUB_PROVISION_CHART) && \
Andy Bavierebf479c2021-09-08 15:47:58 -0700200 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Ajay Lotan Thakur980823b2021-06-23 18:55:05 -0500201 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700202 --values $(UPF_VALUES) \
Badhrinath3e081e22020-12-02 15:02:08 -0600203 5g-core-up \
Andy Baviereda466b2021-08-27 15:00:36 -0700204 $(OMEC_USER_PLANE_CHART) && \
Andy Bavierebf479c2021-09-08 15:47:58 -0700205 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Badhrinath3e081e22020-12-02 15:02:08 -0600206 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700207 --values $(5G_CORE_VALUES) \
Badhrinath3e081e22020-12-02 15:02:08 -0600208 fgc-core \
Andy Baviereda466b2021-08-27 15:00:36 -0700209 $(5GC_CONTROL_PLANE_CHART) && \
Andy Bavierebf479c2021-09-08 15:47:58 -0700210 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
Badhrinath3e081e22020-12-02 15:02:08 -0600211 --namespace omec \
Andy Bavierebf479c2021-09-08 15:47:58 -0700212 --values $(RANSIM_VALUES) \
Badhrinath3e081e22020-12-02 15:02:08 -0600213 5g-ransim-plane \
Andy Bavierebf479c2021-09-08 15:47:58 -0700214 $(5G_RAN_SIM_CHART)
Badhrinath3e081e22020-12-02 15:02:08 -0600215 touch $@
216
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700217# UE images includes kernel module, ue_ip.ko
218# which should be built in the exactly same kernel version of the host machine
219$(BUILD)/openairinterface: | $(M)/setup
220 mkdir -p $(BUILD)
221 cd $(BUILD); git clone https://github.com/opencord/openairinterface.git
222
223$(M)/ue-image: | $(M)/k8s-ready $(BUILD)/openairinterface
224 cd $(BUILD)/openairinterface; \
225 sudo docker build . --target lte-uesoftmodem \
Hyunsun7b640512020-10-27 19:49:51 -0500226 --build-arg build_base=omecproject/oai-base:1.1.0 \
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700227 --file Dockerfile.ue \
Hyunsun7b640512020-10-27 19:49:51 -0500228 --tag omecproject/lte-uesoftmodem:1.1.0
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700229 touch $@
230
231$(M)/oaisim: | $(M)/ue-image $(M)/omec
232 sudo ip addr add 127.0.0.2/8 dev lo || true
233 $(eval mme_iface=$(shell ip -4 route list default | awk -F 'dev' '{ print $$2; exit }' | awk '{ print $$1 }'))
Andy Bavierebf479c2021-09-08 15:47:58 -0700234 helm upgrade --install $(HELM_GLOBAL_ARGS) --namespace omec oaisim cord/oaisim -f $(OAISIM_VALUES) \
Jeremy Ronquilloaf084f32020-08-24 13:18:47 -0700235 --set config.enb.networks.s1_mme.interface=$(mme_iface) \
236 --set images.pullPolicy=IfNotPresent
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700237 kubectl rollout status -n omec statefulset ue
238 @timeout 60s bash -c \
239 "until ip addr show oip1 | grep -q inet; \
240 do \
241 echo 'Waiting for UE 1 gets IP address'; \
242 sleep 3; \
243 done"
244 touch $@
245
Andy Bavierebf479c2021-09-08 15:47:58 -0700246roc: $(M)/roc
247$(M)/roc: $(M)/helm-ready
248 kubectl get namespace aether-roc 2> /dev/null || kubectl create namespace aether-roc
249 helm repo update
250 if [ "$(CHARTS)" == "local" ]; then helm dep up $(AETHER_ROC_UMBRELLA_CHART); fi
251 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
252 --namespace kube-system \
253 --values $(ROC_VALUES) \
254 atomix-controller \
255 $(ATOMIX_CONTROLLER_CHART)
256 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
257 --namespace kube-system \
258 --values $(ROC_VALUES) \
259 atomix-raft-storage \
260 $(ATOMIX_RAFT_STORAGE_CHART)
261 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
262 --namespace kube-system \
263 --values $(ROC_VALUES) \
264 onos-operator \
265 $(ONOS_OPERATOR_CHART)
266 helm upgrade --install --wait $(HELM_GLOBAL_ARGS) \
267 --namespace aether-roc \
268 --values $(ROC_VALUES) \
269 aether-roc-umbrella \
270 $(AETHER_ROC_UMBRELLA_CHART)
271 touch $@
272
273# Load the ROC 4G models. Disable loading network slice from SimApp.
274roc-4g-models: $(M)/roc
275 sed -i 's/provision-network-slice: true/provision-network-slice: false/' $(4G_CORE_VALUES)
276 sed -i 's/# syncUrl/syncUrl/' $(4G_CORE_VALUES)
277 $(eval ONOS_CLI_POD := $(shell kubectl -n aether-roc get pods -l name=onos-cli -o name))
278 echo "ONOS CLI pod: ${ONOS_CLI_POD}"
279 until kubectl -n aether-roc exec ${ONOS_CLI_POD} -- \
280 curl -s -f -L -X PATCH "http://aether-roc-api:8181/aether-roc-api" \
281 --header 'Content-Type: application/json' \
282 --data-raw "$$(cat ${ROC_4G_MODELS})"; do sleep 5; done
283
284# Load the ROC 5G models. Disable loading network slice from SimApp.
285roc-5g-models: $(M)/roc
286 sed -i 's/provision-network-slice: true/provision-network-slice: false/' $(5G_CORE_VALUES)
287 sed -i 's/# syncUrl/syncUrl/' $(5G_CORE_VALUES)
288 $(eval ONOS_CLI_POD := $(shell kubectl -n aether-roc get pods -l name=onos-cli -o name))
289 echo "ONOS CLI pod: ${ONOS_CLI_POD}"
290 until kubectl -n aether-roc exec ${ONOS_CLI_POD} -- \
291 curl -s -f -L -X PATCH "http://aether-roc-api:8181/aether-roc-api" \
292 --header 'Content-Type: application/json' \
293 --data-raw "$$(cat ${ROC_5G_MODELS})"; do sleep 5; done
294
295roc-clean:
296 @echo "This could take 2-3 minutes..."
297 sed -i 's/provision-network-slice: false/provision-network-slice: true/' $(4G_CORE_VALUES)
298 sed -i 's/ syncUrl/ # syncUrl/' $(4G_CORE_VALUES)
299 sed -i 's/provision-network-slice: false/provision-network-slice: true/' $(5G_CORE_VALUES)
300 sed -i 's/ syncUrl/ # syncUrl/' $(5G_CORE_VALUES)
301 kubectl delete namespace aether-roc || true
302 rm -rf $(M)/roc
303
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700304test: | $(M)/fabric $(M)/omec $(M)/oaisim
305 @sleep 5
306 @echo "Test1: ping from UE to SGI network gateway"
Hyunsun Moon0bd8cec2020-09-28 00:38:26 -0500307 ping -I oip1 192.168.250.1 -c 15
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700308 @echo "Test2: ping from UE to 8.8.8.8"
309 ping -I oip1 8.8.8.8 -c 3
Hyunsun Moon0bd8cec2020-09-28 00:38:26 -0500310 @echo "Test3: ping from UE to google.com"
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700311 ping -I oip1 google.com -c 3
312 @echo "Finished to test"
313
314reset-test:
Andy Bavierebf479c2021-09-08 15:47:58 -0700315 kubectl delete namespace omec || true
Jeremy Ronquillob2b64ea2020-12-09 13:49:03 -0800316 kubectl delete po router || true
317 cd $(M); rm -f oaisim omec fabric
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700318
Badhrinath3e081e22020-12-02 15:02:08 -0600319reset-5g-test:
Andy Bavierebf479c2021-09-08 15:47:58 -0700320 kubectl delete namespace omec || true
Badhrinath3e081e22020-12-02 15:02:08 -0600321 cd $(M); rm -f 5g-core
322
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700323clean: reset-test
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700324 kubectl delete po router || true
Jeremy Ronquilloaf084f32020-08-24 13:18:47 -0700325 kubectl delete net-attach-def core-net || true
326 sudo ovs-vsctl del-br br-access-net || true
327 sudo ovs-vsctl del-br br-core-net || true
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700328 sudo apt remove --purge openvswitch-switch -y
329 source "$(VENV)/bin/activate" && cd $(BUILD)/kubespray; \
Andy Bavier125baa02021-10-26 16:26:44 -0700330 ansible-playbook -b -i inventory/local/hosts.ini reset.yml --extra-vars "reset_confirmation=yes"
Jeremy Ronquillo6be909e2020-08-24 09:36:13 -0700331 @if [ -d /usr/local/etc/emulab ]; then \
332 mount | grep /mnt/extra/kubelet/pods | cut -d" " -f3 | sudo xargs umount; \
333 sudo rm -rf /mnt/extra/kubelet; \
334 fi
335 rm -rf $(M)