Role openstack_openrc for OpenStack-Ansible
Go to file
Jesse Pretorius 47bf70352f Add reno scaffolding for release notes management
Change-Id: I3a16a5d3874d74bbbbc90b30acd0899b4a7c5b32
2016-04-09 19:19:22 +01: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 Add reno scaffolding for release notes management 2016-04-09 19:19:22 +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 reno scaffolding for release notes management 2016-04-09 19:19:22 +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 curl to bindep requirements 2016-03-04 19:22:26 +00:00
run_tests.sh Adding Vagrantfile for local developer testing 2016-03-02 13:26:51 -05: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 Add reno scaffolding for release notes management 2016-04-09 19:19:22 +01:00
tox.ini Add reno scaffolding for release notes management 2016-04-09 19:19:22 +01: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