From 905c1f31733f9edc7ccc386815828dcf3c59463a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Thu, 25 Aug 2022 18:07:07 +0200 Subject: [PATCH] 2022-08-25 update --- .../blog/deploy-openshift-single-node-in-kvm/index.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/english/blog/deploy-openshift-single-node-in-kvm/index.md b/content/english/blog/deploy-openshift-single-node-in-kvm/index.md index 73e04ee..467ef7c 100644 --- a/content/english/blog/deploy-openshift-single-node-in-kvm/index.md +++ b/content/english/blog/deploy-openshift-single-node-in-kvm/index.md @@ -1,6 +1,7 @@ --- title: "Deploy OpenShift Single Node in KVM" date: 2021-06-09T00:00:00+02:00 +lastMod: 2022-08-25T00:00:00+02:00 opensource: - OpenShift topics: @@ -37,13 +38,13 @@ The OpenShift routes will be available at `*.apps..`. Note: Do **not** choose a **.local** base domain as it is reserved for multicast DNS. Last but not least, you will need a user account on **cloud.redhat.com**. -You can get one for free by registering as a developer [here](https://developers.redhat.com/register/). +You can get one for free by registering as a developer [here](https://developers.redhat.com/about/). ## Create the libvirt network Create the libvirt network definition. -{{< highlightFile "/tmp/ocp-net.xml" "xml" "" >}} +{{< highlightFile "ocp-net.xml" "xml" "" >}} ocp-dev @@ -82,7 +83,7 @@ This MAC address is used below during the installation. Create the libvirt network, start it and flag it as autostart. ```sh -sudo virsh net-define /tmp/ocp-dev-net.xml +sudo virsh net-define ocp-net.xml sudo virsh net-start ocp-dev sudo virsh net-autostart ocp-dev ```