diff --git a/standalone-node/VERSION b/standalone-node/VERSION index 9f41a4ac..efb1eb44 100644 --- a/standalone-node/VERSION +++ b/standalone-node/VERSION @@ -1 +1 @@ -3.1.39 +3.1.40 diff --git a/standalone-node/docs/user-guide/get-started-guide.md b/standalone-node/docs/user-guide/get-started-guide.md index 812d05c2..3777876a 100644 --- a/standalone-node/docs/user-guide/get-started-guide.md +++ b/standalone-node/docs/user-guide/get-started-guide.md @@ -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. @@ -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. @@ -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 diff --git a/standalone-node/emt_uos/download_emt_ous_with_custom_scripts.sh b/standalone-node/emt_uos/download_emt_ous_with_custom_scripts.sh index fdd01bb4..192d8997 100755 --- a/standalone-node/emt_uos/download_emt_ous_with_custom_scripts.sh +++ b/standalone-node/emt_uos/download_emt_ous_with_custom_scripts.sh @@ -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" diff --git a/standalone-node/host_os/download_tmv.sh b/standalone-node/host_os/download_tmv.sh index a1b26e12..5df6179b 100755 --- a/standalone-node/host_os/download_tmv.sh +++ b/standalone-node/host_os/download_tmv.sh @@ -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" @@ -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" diff --git a/standalone-node/installation_scripts/download_images.sh b/standalone-node/installation_scripts/download_images.sh index f3f71224..a9717114 100755 --- a/standalone-node/installation_scripts/download_images.sh +++ b/standalone-node/installation_scripts/download_images.sh @@ -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 } @@ -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