Role os_adjutant for OpenStack-Ansible
Go to file
Andreas Holmsten 7253116057 Initial commit
2019-11-13 14:49:48 +01:00
defaults Initial commit 2019-11-13 14:49:48 +01:00
doc Initial commit 2019-11-13 14:49:48 +01:00
extras Initial commit 2019-11-13 14:49:48 +01:00
handlers Initial commit 2019-11-13 14:49:48 +01:00
meta Initial commit 2019-11-13 14:49:48 +01:00
tasks Initial commit 2019-11-13 14:49:48 +01:00
templates Initial commit 2019-11-13 14:49:48 +01:00
tests Initial commit 2019-11-13 14:49:48 +01:00
vars Initial commit 2019-11-13 14:49:48 +01:00
zuul.d Initial commit 2019-11-13 14:49:48 +01:00
.gitignore Initial commit 2019-11-13 14:49:48 +01:00
.gitreview Initial commit 2019-11-13 14:49:48 +01:00
bindep.txt Initial commit 2019-11-13 14:49:48 +01:00
CONTRIBUTING.rst Initial commit 2019-11-13 14:49:48 +01:00
LICENSE Initial commit 2019-11-13 14:49:48 +01:00
manual-test.rc Initial commit 2019-11-13 14:49:48 +01:00
README.rst Initial commit 2019-11-13 14:49:48 +01:00
run_tests.sh Initial commit 2019-11-13 14:49:48 +01:00
setup.cfg Initial commit 2019-11-13 14:49:48 +01:00
setup.py Initial commit 2019-11-13 14:49:48 +01:00
test-requirements.txt Initial commit 2019-11-13 14:49:48 +01:00
tox.ini Initial commit 2019-11-13 14:49:48 +01:00
Vagrantfile Initial commit 2019-11-13 14:49:48 +01:00

Team and repository tags

image

OpenStack-Ansible Adjutant

tags

openstack, adjutant, cloud, ansible

category

*nix

This Ansible role installs and configures OpenStack adjutant.

This role will install the following Upstart services:
  • adjutant-api
  • adjutant-processor

Required Variables

adjutant_service_password
adjutant_rabbitmq_password
adjutant_container_mysql_password
adjutant_galera_address

Example Playbook

- name: Install adjutant server
  hosts: adjutant_all
  user: root
  roles:
    - { role: "os_adjutant", tags: [ "os-adjutant" ] }
  vars:
    external_lb_vip_address: 172.16.24.1
    internal_lb_vip_address: 192.168.0.1
    adjutant_galera_address: "{{ internal_lb_vip_address }}"
    adjutant_container_mysql_password: "SuperSecretePassword1"
    adjutant_service_password: "SuperSecretePassword2"
    adjutant_rabbitmq_password: "SuperSecretePassword3"