Tune vars to better support an isolated deployment
Change-Id: I93d33bed42976d20919f887ef8096b212a6559a2 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
parent
634bf0357e
commit
91dbd09353
@ -34,4 +34,4 @@
|
||||
dest: /tmp/openstack-log-dashboard.json
|
||||
|
||||
- name: Upload Custom Openstack Log Dashboard
|
||||
shell: "/opt/elasticdump/node_modules/elasticdump/bin/elasticdump --input=/tmp/openstack-log-dashboard.json --output={{ kibana_index_on_elasticsearch }} --type=data"
|
||||
shell: "/opt/elasticdump/node_modules/elasticdump/bin/elasticdump --input=/tmp/openstack-log-dashboard.json --output={{ kibana_index_on_elasticsearch }} --type=data"
|
||||
|
@ -26,7 +26,12 @@ elastic_packetbeat_retention: 3
|
||||
|
||||
# This is the URL external services can use to communicate with the
|
||||
# elasticsearch cluster.
|
||||
elastic_vip_url: "http://{{ internal_lb_vip_address is defined | ternary(internal_lb_vip_address + ':' + (elastic_hap_port | string), hostvars[groups['kibana'][0]]['ansible_host'] + ':' + (elastic_port | string)) }}"
|
||||
elastic_vip_url: >-
|
||||
{% if internal_lb_vip_address is defined %}
|
||||
http://{{ internal_lb_vip_address ~ ':' ~ elastic_hap_port }}
|
||||
{% else %}
|
||||
http://{{ hostvars[groups['kibana'][0]]['ansible_host'] ~ ':' ~ elastic_port }}
|
||||
{% endif %}
|
||||
|
||||
# kibana vars
|
||||
kibana_interface: 0.0.0.0
|
||||
@ -35,7 +40,7 @@ kibana_username: admin
|
||||
kibana_password: admin
|
||||
kibana_nginx_port: 81
|
||||
kibana_server_name: "{{ ansible_hostname }}"
|
||||
kibana_index_on_elasticsearch: "http://{{ hostvars[groups['elastic-logstash'][0]]['container_address'] }}:{{ elastic_port}}/.kibana"
|
||||
kibana_index_on_elasticsearch: "http://{{ hostvars[groups['elastic-logstash'][0]]['ansible_host'] }}:{{ elastic_port}}/.kibana"
|
||||
|
||||
# logstash vars
|
||||
logstash_beat_input_port: 5044
|
||||
|
Loading…
Reference in New Issue
Block a user