Vamsi Savaram 5bf96b27d6 Add a HTTPS-->HTTP reverse proxy in front of redfish-emulator
This patch introduces a reverse proxy that terminates an HTTPS
connection and forwards it to the redfish emulator behind that
is running HTTP. Also the reverse proxy presents a self-signed
certificate.

Closes: #136
Relates-To: #136

Change-Id: If6ee705247ae8866d2674bff1ff034277f9c9177
2020-04-02 10:21:37 -05:00

48 lines
1.4 KiB
YAML

- name: Include test variables.
include_vars:
file: vars.yaml
- name: deploy-gate
include_role:
name: airship-libvirt-gate
vars:
gate_flavor: small
gate_action: build-infra
- name: query redfish to make sure it has running domains using HTTPS
uri:
url: "https://{{ airship_gate_redfish.bind_address }}:{{ airship_gate_redfish.secure_port }}/redfish/v1/Systems?format=json"
url_username: "{{ airship_gate_redfish.username }}"
url_password: "{{ airship_gate_redfish.password }}"
validate_certs: false
method: GET
return_content: yes
register: redfish_response
- name: debug redfish machines
debug:
var: redfish_response
- name: save ids to list
uri:
url: "https://{{ airship_gate_redfish.bind_address }}:{{ airship_gate_redfish.secure_port }}{{ item.value }}?format=json"
url_username: "{{ airship_gate_redfish.username }}"
url_password: "{{ airship_gate_redfish.password }}"
validate_certs: false
method: GET
return_content: yes
with_dict: "{{ redfish_response.json.Members }}"
register: systems_details
- name: deploy ephemeral host
set_fact:
ephemeral_domain_id: "{{ systems_details | json_query(query_string) | join('') }}"
vars:
query_string: "results[?json.Name=='{{ airship_gate_names.ephemeral_vm }}'].json.Id"
- name: verify that id is not empty
assert:
that:
- ephemeral_domain_id is defined
- (ephemeral_domain_id | length) > 1