DCD-686: Remove HTTP manifest download for now.

This commit is contained in:
Steve Smith
2019-10-31 10:30:17 +11:00
parent e440daa1a5
commit 1ea30531b6

View File

@@ -1,8 +1,8 @@
--- ---
# This role will attempt to fetch and load the backup manifest from a # This role will attempt to fetch and load the backup manifest from a
# remote HTTP or S3 URL. On successful completion the contents of JSON # remote S3 URL. On successful completion the contents of JSON or YAML
# or YAML document will be in the var `atl_backup_manifest`. # document will be in the var `atl_backup_manifest`.
# #
# PREREQUISITES: # PREREQUISITES:
# * `atl_backup_manifest_url` points at the manifest. # * `atl_backup_manifest_url` points at the manifest.
@@ -12,6 +12,9 @@
# #
# NOTE: The actual DB/FS restore operations could potentially be split # NOTE: The actual DB/FS restore operations could potentially be split
# out into discrete roles, but currently that is not required. # out into discrete roles, but currently that is not required.
#
# TODO: Support HTTPS with authentication. Deferred until after the
# initial testing release.
- block: - block:
@@ -43,12 +46,6 @@
dest: "{{ atl_backup_manifest_dest }}" dest: "{{ atl_backup_manifest_dest }}"
when: atl_backup_manifest_url.scheme == 's3' when: atl_backup_manifest_url.scheme == 's3'
- name: Fetch the manifest from remote host
get_url:
url: "{{ atl_backup_manifest_url }}"
dest: "{{ atl_backup_manifest_dest }}"
when: atl_backup_manifest_url.scheme != 's3'
- name: Load parameters from manifest - name: Load parameters from manifest
include_vars: include_vars:
file: "{{ atl_backup_manifest_dest }}" file: "{{ atl_backup_manifest_dest }}"