Added ansible playbook and updated README
Change-Id: I78b2200c3112083583b03d339015137c0acded9b Signed-off-by: Amit Saha <amsaha@gmail.com>
This commit is contained in:
14
README.md
14
README.md
@@ -1,5 +1,12 @@
|
|||||||
# DON: Diagnosing OpenStack Networking
|
# DON: Diagnosing OpenStack Networking
|
||||||
|
|
||||||
|
An OpenStack Horizon dashboard to diagnose OpenStack networking issues.
|
||||||
|
|
||||||
|
* Free software: Apache license
|
||||||
|
* Source: https://git.openstack.org/openstack/python-don
|
||||||
|
* Bugs: https://bugs.launchpad.net/python-don
|
||||||
|
|
||||||
|
## Overview
|
||||||
> [Presented in the OpenStack Liberty Summit, Vancouver, May, 2015]
|
> [Presented in the OpenStack Liberty Summit, Vancouver, May, 2015]
|
||||||
(https://www.openstack.org/summit/vancouver-2015/summit-videos/presentation/don-diagnosing-ovs-in-neutron "DON Presentation at OpenStack Liberty Summit, Vancouver, May 2015").
|
(https://www.openstack.org/summit/vancouver-2015/summit-videos/presentation/don-diagnosing-ovs-in-neutron "DON Presentation at OpenStack Liberty Summit, Vancouver, May 2015").
|
||||||
|
|
||||||
@@ -53,11 +60,6 @@ and also allows the user to do ping tracing
|
|||||||
|
|
||||||
0. You must have Ansible (version 2.0 or later) installed in execution server
|
0. You must have Ansible (version 2.0 or later) installed in execution server
|
||||||
1. Clone DON source to execution server
|
1. Clone DON source to execution server
|
||||||
2. Open shell promt and execute the below command from DON directory
|
2. Open shell prompt and execute the below command from DON directory
|
||||||
3. `ansible-playbook don_playbook.yaml -i <inventory file path> --ask-pass`
|
3. `ansible-playbook don_playbook.yaml -i <inventory file path> --ask-pass`
|
||||||
|
|
||||||
## TODO/Known Issues:
|
|
||||||
Please look at issues in the github repo. If you have questions, bugs, or feature requests, file an issue or send email
|
|
||||||
to:
|
|
||||||
|
|
||||||
* Amit Saha (amisaha+don@cisco.com)
|
|
||||||
|
|||||||
12
don_playbook.yaml
Normal file
12
don_playbook.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
- hosts: don
|
||||||
|
sudo: yes
|
||||||
|
tasks:
|
||||||
|
- copy: src=openstack_dashboard dest=/usr/share/openstack-dashboard
|
||||||
|
- copy: src=static dest=/usr/share/openstack-dashboard/static
|
||||||
|
- copy: src=etc/don dest=/etc
|
||||||
|
- name: Installing Graphviz utility
|
||||||
|
apt: name=graphviz
|
||||||
|
- name: Restart Apache service
|
||||||
|
service: name=apache2 state=restarted
|
||||||
|
|
||||||
Reference in New Issue
Block a user