From 4254db1c61b125a6fda016f990da97cd8820bea4 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Wed, 12 Apr 2023 16:09:33 +0200 Subject: [PATCH] Update the "Creating your first stack" document This patch updates: * The fedora cloud image used (the previous one is not longer available) * The image name, to match the name used in the "stack create" command. * The link to the "WordPress_Native.yaml" Trivial-Fix Change-Id: I845cb19ecc70467606d336850e7154a68208c896 --- doc/source/getting_started/create_a_stack.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/getting_started/create_a_stack.rst b/doc/source/getting_started/create_a_stack.rst index 0d1576a922..ecfcdfbe5d 100644 --- a/doc/source/getting_started/create_a_stack.rst +++ b/doc/source/getting_started/create_a_stack.rst @@ -35,12 +35,12 @@ Preparing to create a stack Download and register the image:: - $ wget http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2 + $ wget https://download.fedoraproject.org/pub/fedora/linux/releases/37/Cloud/x86_64/images/Fedora-Cloud-Base-37-1.7.x86_64.qcow2 $ openstack image create \ --disk-format=qcow2 \ --container-format=bare \ - --file=fedora-20.x86_64.qcow2 \ - fedora-20.x86_64 + --file=Fedora-Cloud-Base-37-1.7.x86_64.qcow2 \ + my-fedora-image Your cloud will have different flavors and images available for launching instances, you can discover what is available by running:: @@ -59,7 +59,7 @@ Launching a stack ----------------- Now lets launch a stack, using an example template from the heat-templates repository:: - $ openstack stack create -t https://opendev.org/openstack/heat-templates/raw/src/branch/master/hot/F20/WordPress_Native.yaml --parameter key_name=heat_key --parameter image_id=my-fedora-image --parameter instance_type=m1.small teststack + $ openstack stack create -t https://opendev.org/openstack/heat-templates/src/branch/master/hot/F20/WordPress_Native.yaml --parameter key_name=heat_key --parameter image_id=my-fedora-image --parameter instance_type=m1.small teststack Which will respond::