Skip to content

Commit

Permalink
Revert "AWS deploy: use plain http when connecting to the qed cluster"
Browse files Browse the repository at this point in the history
This reverts commit bba3ff3.

The QED server cannot speak both http and https, so we have to proceed by fixing
the certifcates first.
  • Loading branch information
panchoh committed Feb 26, 2019
1 parent 229b4ba commit 2e56eeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/aws/provision/templates/qed-config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ agent:
{% endfor %}
server_urls:
{% for host in groups['name_qed-1'] %}
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand All @@ -64,7 +64,7 @@ agent:
{% endfor %}
server_urls:
{% for host in groups['name_qed-1'] %}
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand Down

0 comments on commit 2e56eeb

Please sign in to comment.