Role openstack_openrc for OpenStack-Ansible
Go to file
Travis Truman 566c3ad207 Adding idempotency testing to the role func test
While not particularly important for this role,
this should establish a reusable pattern for adding
such testing to other roles.

Change-Id: Ia700cfd11c8f15e81f5f767dd723e5a323159919
2016-07-11 10:29:00 -04:00
defaults Correct filename of clouds.yml to clouds.yaml 2016-03-02 13:33:41 -05:00
doc [DOCS] Cleanup the role docs for consistency and clarity 2016-03-06 10:56:36 -05:00
meta Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
releasenotes Remove Liberty releasenote index 2016-04-20 22:19:30 +01:00
tasks Jinja2 template renamed with .j2 extension 2016-03-04 11:28:42 -05:00
templates Set OS_TENANT_NAME for backward compatibility 2016-03-28 14:22:48 -04:00
tests Correct filename of clouds.yml to clouds.yaml 2016-03-02 13:33:41 -05:00
.gitignore Add .swp files to .gitignore 2016-05-04 15:19:01 +01:00
.gitreview Implement base configuration for independent repository 2016-03-01 16:34:59 +00:00
CONTRIBUTING.rst Adding Vagrantfile for local developer testing 2016-03-02 13:26:51 -05:00
LICENSE Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
README.rst [DOCS] Cleanup the role docs for consistency and clarity 2016-03-06 10:56:36 -05:00
Vagrantfile Adding Vagrantfile for local developer testing 2016-03-02 13:26:51 -05:00
other-requirements.txt Add dependencies for paramiko 2.0 2016-05-03 08:54:58 +01:00
run_tests.sh Add dependencies for paramiko 2.0 2016-05-03 08:54:58 +01:00
setup.cfg Implement base configuration for independent repository 2016-03-01 16:34:59 +00:00
setup.py Implement base configuration for independent repository 2016-03-01 16:34:59 +00:00
test-requirements.txt Update tox configuration 2016-07-08 12:43:38 +00:00
tox.ini Adding idempotency testing to the role func test 2016-07-11 10:29:00 -04:00

README.rst

OpenStack-Ansible openrc file

tags

openstack, openrc, cloud, ansible

category

*nix

This Ansible role creates the configuration files used by various OpenStack CLI tools. For more information about these tools, see the OpenStack CLI Reference.

Required Variables

To use this role, define the following variables:

keystone_service_adminuri_insecure: false
keystone_service_internaluri_insecure: false
openrc_os_password: secrete
openrc_os_domain_name: Default

Example Playbook

- name: Install openrc
  hosts: all
  user: root
  roles:
    - { role: "openstack-ansible-openstack_openrc",
        tags: [ "openstack_openrc" ]
      }
  vars:
    keystone_service_adminuri_insecure: false
    keystone_service_internaluri_insecure: false
    openrc_os_password: secrete
    openrc_os_domain_name: Default