Role os_designate for OpenStack-Ansible
Go to file
Jesse Pretorius f59db83194 Various configuration changes and task updates
This patch implements a bunch of changes for easier debugging and to
make the deployment more functional.

 - All passwords are removed from defaults. The role must fail to
   complete all tasks if no password is provided.
 - The Designate Pool Configuration uuid's are provided with
   defaults and the vars are added to the user_secrets.yml file
   for easy implementation in OpenStack-Ansible.
 - The designate.conf template has been re-organised to closely
   match the sample file provided in the master branch of the
   OpenStack Designate repository. This makes it easier to compare
   for changes.
 - The PyMySQL driver is used for all MySQL connectivity, as is now
   the general standard for OpenStack Services.
 - The designate_pool_manager database is now setup.
 - The test playbook has the RabbitMQ & DB setup pre_tasks removed
   for now. These can move out again once functional testing is
   working.
 - The test playbook's LXC dhcp range is reduced to 50 hosts in
   order to ensure no conflicts with the test containers and also
   provide room for growth.
 - Add human readable logging callback plugin to functional test.
 - Restructure testing to make it easier to work with.
2016-03-14 12:34:48 +00:00
defaults Various configuration changes and task updates 2016-03-14 12:34:48 +00:00
doc Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
extras Various configuration changes and task updates 2016-03-14 12:34:48 +00:00
files/rootwrap.d Implement rootwrap 2016-03-14 12:34:48 +00:00
handlers Clean up CR's, whitespace and service description 2016-03-14 12:34:47 +00:00
meta Clean up CR's, whitespace and service description 2016-03-14 12:34:47 +00:00
tasks Various configuration changes and task updates 2016-03-14 12:34:48 +00:00
templates Various configuration changes and task updates 2016-03-14 12:34:48 +00:00
tests Various configuration changes and task updates 2016-03-14 12:34:48 +00:00
vars Initial commit 2016-03-14 12:34:10 +00:00
.gitignore Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
.gitreview Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
CONTRIBUTING.rst Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
LICENSE Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
README.rst Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
Vagrantfile Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
other-requirements.txt Initial commit of bindep requirements 2016-03-14 12:34:47 +00:00
run_tests.sh Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
setup.cfg Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
setup.py Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
test-requirements.txt Implement base configuration for independent role repository 2016-03-14 12:34:46 +00:00
tox.ini Various configuration changes and task updates 2016-03-14 12:34:48 +00:00

README.rst

OpenStack-Ansible Designate

tags

openstack, designate, cloud, ansible

category

*nix

This Ansible role installs and configures OpenStack Designate.

This role will install the following Upstart services:
  • designate-api
  • designate-central
  • designate-pool-manager
  • designate-mdns
  • designate-sink
  • glance-api
  • glance-registry

Default Variables

../../defaults/main.yml

Required Variables

designate_galera_address
designate_container_mysql_password
designate_service_password

Example Playbook

- name: Install Designate Server
  hosts: designate_all
  user: root
  roles:
    - { role: "os_designate", tags: [ "os-designate" ] }
  vars:
    external_lb_vip_address: 172.16.24.1
    internal_lb_vip_address: 192.168.0.1
    designate_galera_address: "{{ internal_lb_vip_address }}"
    designate_container_mysql_password: "SuperSecretePassword1"
    designate_service_password: "SuperSecretePassword2"