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

Merge "Fix cluster mode for skydive"

parents 0f2d547b 48b5696b
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ openstack:
etcd:
servers:
{% if enable_etcd == "yes" %}
{% if enable_etcd | bool %}
{% for host in groups['etcd'] %}
- http://{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ etcd_client_port }}
{% endfor %}
......
......@@ -19,9 +19,14 @@ openstack:
domain_name: Default
endpoint_type: internal
analyzers:
{% for host in groups['skydive-analyzer'] %}
- {{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ skydive_analyzer_port }}
{% endfor %}
etcd:
client_timeout: 100
{% if enable_etcd == "yes" %}
{% if enable_etcd | bool %}
embedded: false
servers:
{% for host in groups['etcd'] %}
......
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