Skip to content

Commit

Permalink
AWS deploy: use plain http when connecting to the qed cluster
Browse files Browse the repository at this point in the history
We'll re-enable https when we fix the certificate generation.
  • Loading branch information
panchoh committed Feb 26, 2019
1 parent 88836c6 commit bba3ff3
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'] %}
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "http://{{ 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'] %}
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand Down

0 comments on commit bba3ff3

Please sign in to comment.