Kubedge eLTE Simulation

Install Kubedge eLTE Application on the PI Cluster

Key Aspects

  • Install eLTE
  • Test access to eLTE

Deploy Using helm

helm repo add hack4easy "https://raw.githubusercontent.com/kubedge/helmrepos/arm32v7/hack4easy"
helm repo update

Apply the labels to the nodes

Ensure the right labels have been applied to the nodes where eLTE is installed

For instance:

kubectl label nodes kubemaster-pi kubedgeNodeType=lte-ran

Direct installation from the repo

If you feel lucky:

helm install hack4easy/kubesim-elte-arm32v7 --name sim-elte

Two steps installation from local

If you want to better understand the setup:

cd $MY_LOCAL_HELM_CHARTS
helm fetch hack4easy/kubesim-elte-arm32v7
tar xvf kubesim-elte-arm32v7-0.1.0.tgz
cd kubesim-elte-arm32v7/
helm install . --name sim-elte

Source Code

The images creation scripts are availble under:

Cleanup

$ helm delete --purge sim-elte

release "elte" deleted

Conclusion

WIP