Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This document outlines the steps for creating an LF Edge Sandbox account, installing EVE on a hardware device, and selecting and deploying edge applications. It’s designed to enable developers to deploy LF Edge projects for experimentation quickly. By the end of this Getting Started procedure, you will have a fully functional edge node,  which will be onboarded to the LF Edge sandbox. You will also have deployed your first edge application to your new edge node. For any help along the way, please see the LF Edge Sandbox support page.

...

  • A Linux Foundation ID (LF ID) - You can learn about creating an LF ID here
  • A free account on the LF Edge Sandbox SaaS platform - You can create an account here
  • One or more edge nodes capable of running EVE-OS - Learn more here

Creating an account

You can create a free account by visiting this URL.

Getting Started

Read and complete the following sections sequentially. Note that some steps will link to documentation in the ZEDEDA Help Center. These steps are more extensive than the others and merit dedicated documentation.

...

MacOS and Linux

1. Open your terminal. Ensure you are in your preferred directory for this operation. This procedure assumes HOME.

...

Code Block
languagejava
titlecode block
cd $HOME

...

2. Make an eve-overrides directory, which will contain your server endpoint configuration.

<code>mkdir eve-overrides</code>

3. Set the LF Edge Sandbox cluster endpoint by writing its URL to a text file named "server".

<code>echo https://sandboxcloud.lfedge.org > $HOME/eve-overrides/server</code>

...

For x86 edge nodes, run the following command.

<code>docker run -v $HOME/eve-overrides:/in --rm lfedge/eve:latest \
installer_raw > installer.raw</code>

For ARM and RPi edge nodes, run the following command.

...

Windows OS

1. Open your terminal. Ensure you are in your preferred directory for this operation. This procedure assumes HOMEPATH.

<code>cd %HOMEDRIVE%\%HOMEPATH</code>

2. Make an eve-overrides directory, which will contain your server endpoint configuration.

<code>mkdir eve-overrides</code>

3. Set the LF Edge Sandbox cluster endpoint by writing its URL to a text file named "server".

<code>echo https://sandboxcloud.lfedge.org > %HOMEDRIVE%\%HOMEPATH%\eve-overrides\server</code>

...

For x86 edge nodes, run the following command.

<code>docker run -v %HOMEDRIVE%\%HOMEPATH%\eve-overrides:/in \
--rm ledge/eve:latest installer_raw > installer.raw</code>

For ARM and RPi edge nodes, run the following command.

...