Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion standalone-node/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.39
3.1.40
10 changes: 5 additions & 5 deletions standalone-node/docs/user-guide/get-started-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ cd edge-microvisor-toolkit-standalone-node

This step is done by executing the `./download_images.sh` script. If you are using EMT
image with desktop virtualization features then use `DV` parameter. For default EMT image,
which is a non-RT kernel, use the `NON-RT` parameter.
which is a non-RT kernel, use the `NRT` parameter.

```bash
sudo ./download_images.sh DV

or

sudo ./download_images.sh NON-RT
sudo ./download_images.sh NRT
```

> **Note:** By default the script will only pull basic kubernetes artifacts to create a single node cluster.
Expand Down Expand Up @@ -236,8 +236,8 @@ there is no need for further image setup. The `usb-bootable-files.tar.gz` instal
If you need Desktop Virtualization features, follow these steps to replace the default image:

1. Download the desktop virtualization image (DV) from the "no Auth" file server registry.
The DV image is available here [Download DV Image](https://files-rs.edgeorchestration.intel.com/files-edge-orch/repository/microvisor/dv/edge-readonly-dv-3.0.20260225.2000.raw.gz)
Link to the [sha256sum for this image](https://files-rs.edgeorchestration.intel.com/files-edge-orch/repository/microvisor/dv/edge-readonly-dv-3.0.20260225.2000.raw.gz.sha256sum)
The DV image is available here [Download DV Image](https://files-rs.edgeorchestration.intel.com/files-edge-orch/repository/microvisor/dv/edge-readonly-dv-3.0.20260311.2000.raw.gz)
Link to the [sha256sum for this image](https://files-rs.edgeorchestration.intel.com/files-edge-orch/repository/microvisor/dv/edge-readonly-dv-3.0.20260311.2000.raw.gz.sha256sum)

> **Note:** A custom image can be copied locally from your development system to the 5th
> partition, as shown in **Step 2** below.
Expand Down Expand Up @@ -296,7 +296,7 @@ If you need Desktop Virtualization features, follow these steps to replace the d
Refer to the edge node console output for instructions to verify the kubernetes cluster creation.
Use the Linux login credentials which was provided while preparing the bootable USB drive.

**Note:** If you want to run `kubectl` commands from the edge node you can use the provided ``k`` alias,
**Note:** If you want to run `kubectl`, commands from the edge node you can use the provided ``k`` alias,
which is defined in the `.bashrc` of the user defined in your config.

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ FILE_RS_URL="https://files-rs.edgeorchestration.intel.com/files-edge-orch/reposi
if [ "$PLATFORM_TYPE" == "PTL" ]; then
# PTL Platform (To be updated with PV release images)
# RPL/BTL Platform
EMB_BUILD_DATE=20251204
EMB_FILE_NAME="microvisor/uos/emb_uos_x86_64_${EMB_BUILD_DATE}"
EMB_BUILD_DATE=20260310
EMB_FILE_NAME="microvisor/uos/next/emb_uos_x86_64_${EMB_BUILD_DATE}"
EMB_RAW_GZ="${EMB_FILE_NAME}.tar.gz"
EMB_IMAGE_URL="${FILE_RS_URL}/${EMB_RAW_GZ}"
echo "PTL Platform uOS is selected"
Expand Down
16 changes: 8 additions & 8 deletions standalone-node/host_os/download_tmv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export PLATFORM_TYPE="${2:-PTL}"
if [ "$INSTALL_TYPE" == "DV" ]; then
# EMTS build with DV image non-PTL (RPL/BTL) platforms
EMT_VERSION=3.0
EMT_BUILD_DATE=20260225
EMT_BUILD_DATE=20260311
EMT_BUILD_NO=2000
EMT_FILE_NAME="edge-readonly-dv-${EMT_VERSION}.${EMT_BUILD_DATE}.${EMT_BUILD_NO}"
EMT_RAW_GZ="${EMT_FILE_NAME}.raw.gz"
Expand All @@ -24,20 +24,20 @@ else
if [ "$PLATFORM_TYPE" == "PTL" ]; then
# EMTS build with NRT image for PTL
EMT_VERSION=3.0
EMT_BUILD_DATE=20260225
EMT_BUILD_NO=0914
EMT_FILE_NAME="edge-readonly-${EMT_VERSION}.${EMT_BUILD_DATE}.${EMT_BUILD_NO}"
EMT_BUILD_DATE=20260310
EMT_BUILD_NO=0100
EMT_FILE_NAME="edge-readonly-${EMT_VERSION}.${EMT_BUILD_DATE}.${EMT_BUILD_NO}-prod-signed"

EMT_RAW_GZ="${EMT_FILE_NAME}.raw.gz"
EMT_SHA256SUM="${EMT_FILE_NAME}.raw.gz.sha256sum"

curl -k --noproxy "" ${FILE_RS_URL}/files-edge-orch/repository/microvisor/non_rt/${EMT_RAW_GZ} -o edge_microvisor_toolkit.raw.gz
curl -k --noproxy "" ${FILE_RS_URL}/files-edge-orch/repository/microvisor/non_rt/${EMT_SHA256SUM} -o edge_microvisor_toolkit.raw.gz.sha256sum
curl -k --noproxy "" ${FILE_RS_URL}/files-edge-orch/repository/microvisor/non_rt/next/${EMT_RAW_GZ} -o edge_microvisor_toolkit.raw.gz
curl -k --noproxy "" ${FILE_RS_URL}/files-edge-orch/repository/microvisor/non_rt/next/${EMT_SHA256SUM} -o edge_microvisor_toolkit.raw.gz.sha256sum
else
# EMTS build with NRT image for RPL/BTL
EMT_VERSION=3.0
EMT_BUILD_DATE=20260225
EMT_BUILD_NO=0914
EMT_BUILD_DATE=20260310
EMT_BUILD_NO=2152
EMT_FILE_NAME="edge-readonly-${EMT_VERSION}.${EMT_BUILD_DATE}.${EMT_BUILD_NO}"
EMT_RAW_GZ="${EMT_FILE_NAME}.raw.gz"
EMT_SHA256SUM="${EMT_FILE_NAME}.raw.gz.sha256sum"
Expand Down
12 changes: 6 additions & 6 deletions standalone-node/installation_scripts/download_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ BINARY_INSTALL=true
IDV_EXTENSIONS=true
IDV_KUBEVIRT=true
IDV_DEVICE_PLUGINS=true
INSTALL_TYPE="${1:-NON-RT}"
INSTALL_TYPE="${1:-NRT}"

# Help function
show_help() {
echo "Usage: $0 [DV|NON-RT]"
echo "Usage: $0 [DV|NRT]"
echo " DV : Download images and manifests for Desktop Virtualization (kubernetes and addon images and manifest)."
echo " NON-RT : Download images and manifests for Default EMT image without Desktop Virtualization and Realtime kernel (kubernetes and addon images and manifest). (default)"
echo "If no argument is given, NON-RT is used by default."
echo " NRT : Download images and manifests for Default EMT image without Desktop Virtualization and Realtime kernel (kubernetes and addon images and manifest). (default)"
echo "If no argument is given, NRT is used by default."
exit 0
}

Expand All @@ -36,13 +36,13 @@ if [ "$INSTALL_TYPE" == "DV" ]; then
IDV_KUBEVIRT=true
IDV_DEVICE_PLUGINS=true
else
if [ "$INSTALL_TYPE" == "NON-RT" ]; then
if [ "$INSTALL_TYPE" == "NRT" ]; then
AIRGAP=true
IDV_EXTENSIONS=false
IDV_KUBEVIRT=false
IDV_DEVICE_PLUGINS=false
else
echo "Invalid INSTALL_TYPE. Use 'DV' or 'NON-RT'."
echo "Invalid INSTALL_TYPE. Use 'DV' or 'NRT'."
exit 1
fi
fi
Expand Down
Loading