This change updates all fo the names that we were using to the post openstack migration name for openstack-ansible. Change-Id: I6524af53ed02e19a0f56908e42a65d2dae8b71e3
4.1 KiB
Extending openstack-ansible
The openstack-ansible project provides a basic OpenStack environment, but many deployers will wish to extend the environment based on their needs. This could include installing extra services, changing package versions, or overriding existing variables.
Using these extension points, deployers can provide a more 'opinionated' installation of OpenStack that may include their own software.
Including openstack-ansible in your project
Including the openstack-ansible repository within another project can be done in several ways.
- A git submodule pointed to a released tag.
- A script to automatically perform a git checkout of openstack-ansible
When including openstack-ansible in a project, consider using a parallel directory structure as shown in the ansible.cfg files section.
Also note that copying files into directories such as env.d or conf.d should be handled via some sort of script within the extension project.
ansible.cfg files
You can create your own playbook, variable, and role structure while
still including the openstack-ansible roles and libaries by putting an
ansible.cfg
file in your playbooks
directory.
The relevant options for Ansible 1.9 (included in openstack-ansible) are as follows:
library
This variable should point to
openstack-ansible/playbooks/library
. Doing so allows roles and playbooks to access openstack-ansible's included Ansible modules.roles_path
This variable should point to
openstack-ansible/playbooks/roles
. This allows Ansible to properly look up any openstack-ansible roles that extension roles may reference.inventory
This variable should point to
openstack-ansible/playbooks/inventory
. With this setting, extensions have access to the same dynamic inventory that openstack-ansible uses.
Note that the paths to the openstack-ansible
top level
directory can be relative in this file.
Consider this directory structure:
my_project
|
|- custom_stuff
| |
| |- playbooks
|- openstack-ansible
| |
| |- playbooks
The variables in
my_project/custom_stuff/playbooks/ansible.cfg
would use
../openstack-ansible/playbooks/<directory>
.
env.d
The openstack-ansible default environment, including container and
host group mappings, resides in
/etc/openstack_deploy/openstack_environment.yml
.
The /etc/openstack_deploy/env.d
directory sources all
YAML files into the deployed environment, allowing a deployer to define
additional group mappings without having to edit the
openstack_environment.yml
file, which is controlled by the
openstack-ansible project itself.
conf.d
Common OpenStack services and their configuration are defined by
openstack-ansible in the
/etc/openstack_deploy/openstack_user_config.yml
settings
file.
Additional services should be defined with a YAML file in
/etc/openstack_deploy/conf.d
, in order to manage file
size.
user_*.yml files
Files in /etc/openstack_deploy
beginning with
user_
will be automatically sourced in any
openstack-ansible
command. Alternatively, the files can be
sourced with the -e
parameter of the
ansible-playbook
command.
user_variables.yml
and user_secrets.yml
are
used directly by openstack-ansible; adding custom values here is not
recommended.
user_extras_variables.yml
and
users_extras_secrets.yml
are provided and can contain
deployer's custom values, but deployers can add any other files they
wish to include new configuration, or override existing.
Ordering and Precedence
user_*.yml
variables are just YAML variable files. They
will be sourced in alphanumeric order by
openstack-ansible
.
Adding Galaxy roles
Any roles defined in
openstack-ansible/ansible-role-requirements.yml
will be
installed by the
openstack-ansible/scripts/bootstrap-ansible.sh
script.