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
This commit is contained in:
Rodolfo Alonso Hernandez
2023-04-12 16:09:33 +02:00
parent cec8eb12c6
commit 4254db1c61

View File

@@ -35,12 +35,12 @@ Preparing to create a stack
Download and register the image:: 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 \ $ openstack image create \
--disk-format=qcow2 \ --disk-format=qcow2 \
--container-format=bare \ --container-format=bare \
--file=fedora-20.x86_64.qcow2 \ --file=Fedora-Cloud-Base-37-1.7.x86_64.qcow2 \
fedora-20.x86_64 my-fedora-image
Your cloud will have different flavors and images available for Your cloud will have different flavors and images available for
launching instances, you can discover what is available by running:: 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:: 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:: Which will respond::