Book Image

Preparing for the Certified OpenStack Administrator Exam

By : Matt Dorn
Book Image

Preparing for the Certified OpenStack Administrator Exam

By: Matt Dorn

Overview of this book

This book provides you with a specific strategy to pass the OpenStack Foundation’s first professional certification: the Certified OpenStack Administrator. In a recent survey, 78% of respondents said the OpenStack skills shortage had deterred them from adopting OpenStack. Consider this an opportunity to increase employer and customer confidence by proving you have the skills required to administrate real-world OpenStack clouds. You will begin your journey by getting well-versed with the OpenStack environment, understanding the benefits of taking the exam, and installing an included OpenStack All-in-One Virtual Appliance to work through objectives covered throughout the book. After exploring the basics of the individual services, you will be introduced to strategies to accomplish the exam objectives relevant to Keystone, Glance, Nova, Neutron, Cinder, Swift, Heat, and troubleshooting. Finally, you’ll benefit from the special tips section and a practice exam to put your knowledge to the test. By the end of the journey, you will be ready to become a Certified OpenStack Administrator!
Table of Contents (13 chapters)

Heat templates

Heat templates (heat orchestration templates or HOT, for short) are templates that heat-api can consume to create virtual resources in the OpenStack environment. They describe all the desired resources and their associated parameters. After the stack has been created, the OpenStack resources are up and running. Templates are extremely convenient because they allow you to check them into a version control system such as GitHub to easily track changes and collaborate with the team. If problems occur after deploying a Heat template, simply restore to a previous version of the template.

Figure 7.2 breaks down the anatomy of a Heat template.

Figure 9.2: Anatomy of a Heat template
  1. Template header: The template version is mandatory and the description is optional. Additional features and capabilities are released in every new version of OpenStack. This means that newer...