Skip to content
Snippets Groups Projects
Commit a26b23e2 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add ovs flows to skydive"

parents 8ad8342b bba8c8af
No related branches found
No related tags found
No related merge requests found
---
- name: Ensuring config directories exist
file:
path: "{{ node_config_directory }}/{{ item.key }}/config"
path: "{{ node_config_directory }}/{{ item.key }}"
state: "directory"
recurse: yes
when:
......
......@@ -8,7 +8,6 @@ auth:
logging:
level: INFO
backends:
- stderr
- file
file:
path: /var/log/kolla/skydive/skydive-agent.log
......@@ -20,6 +19,7 @@ openstack:
tenant_name: {{ openstack_auth['project_name'] }}
region_name: {{ openstack_region_name }}
domain_name: Default
endpoint_type: internal
etcd:
servers:
......@@ -43,7 +43,7 @@ agent:
flow:
probes:
- gopacket
{% if neutron_plugin_agent == "openvswitch" %}
{% if neutron_plugin_agent in ['openvswitch', 'opendaylight'] %}
- ovssflow
{% endif %}
topology:
......@@ -51,7 +51,7 @@ agent:
- netlink
- netns
- neutron
{% if neutron_plugin_agent == "openvswitch" %}
{% if neutron_plugin_agent in ['openvswitch', 'opendaylight'] %}
- ovsdb
{% endif %}
......@@ -61,3 +61,10 @@ netns:
flow:
expire: 600
update: 60
{% if neutron_plugin_agent in ['openvswitch', 'opendaylight'] %}
ovs:
ovsdb: tcp://{{ api_interface_address }}:{{ ovsdb_port }}
oflow:
enable: true
{% endif %}
......@@ -2,11 +2,12 @@
auth:
type: keystone
analyzer_username: {{ openstack_auth['username'] }}
analyzer_password: {{ openstack_auth['password'] }}
logging:
level: INFO
backends:
- stderr
- file
file:
path: /var/log/kolla/skydive/skydive-analyzer.log
......@@ -16,6 +17,7 @@ openstack:
tenant_name: {{ openstack_auth['project_name'] }}
region_name: {{ openstack_region_name }}
domain_name: Default
endpoint_type: internal
etcd:
client_timeout: 100
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment