Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Displaying the status of the heat stack.

Navigating using the web-client lets us see the resources created and managed by the stack, and also the output from the stack. In this case the output is the ID of the created network and the ID of the created security group.

Image Added

The same information is also available through the CLI:

Code Block
titleCreating Heat Stack - CLI
collapsetrue
$ openstack stack show Common
+-----------------------+-----------------------------------------------------------------------------------------------------------------+
| Field                 | Value                                                                                                           |
+-----------------------+-----------------------------------------------------------------------------------------------------------------+
| id                    | 2abc3c47-044a-4075-a1f6-422ee49376d8                                                                            |
| stack_name            | Common                                                                                                          |
| description           | A template to create common base infrastructure for the heat-guide at                                           |
|                       | https://www.ntnu.no/wiki/display/skyhigh/Openstack+Heat                                                         |
|                       |                                                                                                                 |
| creation_time         | 2022-08-30T13:51:20Z                                                                                            |
| updated_time          | None                                                                                                            |
| stack_status          | CREATE_COMPLETE                                                                                                 |
| stack_status_reason   | Stack CREATE completed successfully                                                                             |
| parameters            | OS::project_id: 74729572aad24d93b9a4cac7301ef9d1                                                                |
|                       | OS::stack_id: 2abc3c47-044a-4075-a1f6-422ee49376d8                                                              |
|                       | OS::stack_name: Common                                                                                          |
|                       |                                                                                                                 |
| outputs               | - description: The security-group allowing generiv VM access.                                                   |
|                       |   output_key: secgroup_generic                                                                                  |
|                       |   output_value: 30586c14-7bc1-4ef4-91dc-2089eb32ec23                                                            |
|                       | - description: The network created by the template                                                              |
|                       |   output_key: network                                                                                           |
|                       |   output_value: db265ea1-1d85-47f1-ba3a-714174da114e                                                            |
|                       |                                                                                                                 |
| links                 | - href: https://api.stack.it.ntnu.no:8004/v1/74729572aad24d93b9a4cac7301ef9d1/stacks/Common/2abc3c47-044a-4075- |
|                       | a1f6-422ee49376d8                                                                                               |
|                       |   rel: self                                                                                                     |
|                       |                                                                                                                 |
| deletion_time         | None                                                                                                            |
| notification_topics   | []                                                                                                              |
| capabilities          | []                                                                                                              |
| disable_rollback      | True                                                                                                            |
| timeout_mins          | 60                                                                                                              |
| stack_owner           | eigilo                                                                                                          |
| parent                | None                                                                                                            |
| stack_user_project_id | 9865a03e9eb042bc9de03578a9eca6ed                                                                                |
| tags                  | []                                                                                                              |
|                       |                                                                                                                 |
+-----------------------+-----------------------------------------------------------------------------------------------------------------+

Student Lab