Brian Matheson 701a0b8fef Add support for PLUMgrid via Ansible playbook
Support Compass OpenStack installation with integrated PLUMgrid Open
Networking Suite.  PLUMgrid ONS is a comprehensive software-only
networking solution for OpenStack which integrates with Neutron.  The
current implementation supports OpenStack Juno with a single
controller.

* add role for core plumgrid software

* add role for plugin to neutron

* add single-controller playbook to include plumgrid roles

Change-Id: I4c320e9282bcafe450556e70020505fdb5aaf396
2015-05-28 06:26:27 -04:00

31 lines
558 B
Plaintext

global_defs {
router_id {{ hostname }}
}
vrrp_script chk_nginx {
script "killall -0 nginx"
interval 2
}
vrrp_instance nos {
virtual_router_id {{ keepalived_router_id }}
# for electing MASTER, highest priority wins.
priority {{ keepalived_priority }}
state BACKUP
nopreempt
interface {{ management_bridge }}
virtual_ipaddress {
{{ pg_vip }} dev {{ management_bridge }} label {{ management_bridge }}:1
}
track_script {
chk_nginx
}
authentication {
auth_type PASS
auth_pass {{ keepalived_password }}
}
}