From f13c1cc8e9d90d69cca8aad1b4b743e88b8fb252 Mon Sep 17 00:00:00 2001 From: Gregory Giguashvili Date: Mon, 8 May 2023 16:52:35 +0000 Subject: [PATCH] Fix docs for RHEL DVD file names to be of the 9.2 version --- docs/devenv_cloud.md | 2 +- docs/devenv_setup.md | 2 +- docs/devenv_setup_auto.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/devenv_cloud.md b/docs/devenv_cloud.md index a797062f1a..7d12b4add8 100644 --- a/docs/devenv_cloud.md +++ b/docs/devenv_cloud.md @@ -131,7 +131,7 @@ Follow the instructions in the [Create Virtual Machine](./devenv_setup_auto.md#c ```bash ./scripts/devenv-builder/create-vm.sh microshift-bench \ /var/lib/libvirt/images \ - /var/lib/libvirt/images/rhel-baseos-9.*-$(uname -m)-dvd.iso \ + /var/lib/libvirt/images/rhel-baseos-9.2-$(uname -m)-dvd.iso \ 2 2 10 0 1 ``` diff --git a/docs/devenv_setup.md b/docs/devenv_setup.md index 0b7b321633..fc9f31f6ba 100644 --- a/docs/devenv_setup.md +++ b/docs/devenv_setup.md @@ -19,7 +19,7 @@ sudo dnf install -y libvirt virt-manager virt-install virt-viewer libvirt-client Move the ISO image to `/var/lib/libvirt/images` directory and run the following commands to create a virtual machine. ```bash VMNAME="microshift-dev" -ISONAME=rhel-baseos-9.1-$(uname -m)-boot.iso +ISONAME=rhel-baseos-9.2-$(uname -m)-boot.iso sudo -b bash -c " \ cd /var/lib/libvirt/images/ && \ diff --git a/docs/devenv_setup_auto.md b/docs/devenv_setup_auto.md index 64af72d8c7..dec3b4a7ff 100644 --- a/docs/devenv_setup_auto.md +++ b/docs/devenv_setup_auto.md @@ -89,7 +89,7 @@ As an example, run the following command to create a virtual machine named `micr > See the [Recommended system swap size](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/managing_storage_devices/getting-started-with-swap_managing-storage-devices#recommended-system-swap-space_getting-started-with-swap) document for more information. ```bash -ISONAME=rhel-baseos-9.1-$(uname -m)-dvd.iso +ISONAME=rhel-baseos-9.2-$(uname -m)-dvd.iso ./scripts/devenv-builder/create-vm.sh microshift-dev \ /var/lib/libvirt/images \ @@ -100,7 +100,7 @@ ISONAME=rhel-baseos-9.1-$(uname -m)-dvd.iso or ```bash -ISONAME=rhel-baseos-9.1-$(uname -m)-dvd.iso +ISONAME=rhel-baseos-9.2-$(uname -m)-dvd.iso export VMNAME=microshift-dev export VMDISKDIR=/var/lib/libvirt/images