Skip to content

Commit 19cb70e

Browse files
committed
feature: allow downloading of package by remote host
Currently node_exporter install always downloads the package on the localhost and unpacks it there then uploads it to the remote host. In the case the ansible controller is at the other end of a thin network pipe, or if it may not even have access to the package URL, it may be desirable to download and unpack it on the remote host instead. This change adds that ability as an optional behavior to _common/install and wires it up for use by node_exporter, using the node_exporter_remote_download variable. The default for node exporter and the behavior for any other roles remains the same as before: delegate to localhost. Fixes prometheus-community#389. Signed-off-by: Travis Downs <[email protected]>
1 parent 5df0df6 commit 19cb70e

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

roles/_common/tasks/install.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
- install
4747
- "{{ ansible_parent_role_names | first | regex_replace(ansible_collection_name ~ '.', '') }}_install"
4848

49-
- name: "Create localhost binary cache path"
49+
- name: "Create binary cache path on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}"
5050
ansible.builtin.file:
5151
path: "{{ _common_local_cache_path }}"
5252
state: directory
5353
mode: 0755
54-
delegate_to: localhost
54+
delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}"
5555
check_mode: false
5656
become: false
5757
tags:
@@ -78,7 +78,7 @@
7878
run_once: true
7979
when: (_common_checksums_url)
8080

81-
- name: "Download {{ __common_binary_basename }}"
81+
- name: "Download {{ __common_binary_basename }} from {{ _common_binary_url }} on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}"
8282
ansible.builtin.get_url:
8383
url: "{{ _common_binary_url }}"
8484
dest: "{{ _common_local_cache_path }}/{{ _common_binary_name | default(__common_binary_basename) }}"
@@ -90,17 +90,18 @@
9090
retries: 5
9191
delay: 2
9292
# run_once: true # <-- this can't be set due to multi-arch support
93-
delegate_to: localhost
93+
delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}"
9494
check_mode: false
9595

96-
- name: "Unpack binary archive {{ __common_binary_basename }}"
96+
- name: "Unpack binary archive {{ __common_binary_basename }} on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}"
9797
ansible.builtin.unarchive:
9898
src: "{{ _common_local_cache_path }}/{{ __common_binary_basename }}"
9999
dest: "{{ _common_local_cache_path }}"
100100
mode: 0755
101101
list_files: true
102102
extra_opts: "{{ _common_binary_unarchive_opts | default(omit, true) }}"
103-
delegate_to: localhost
103+
remote_src: "{{ _common_remote_download | bool }}"
104+
delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}"
104105
check_mode: false
105106
when: __common_binary_basename is search('\.zip$|\.tar\.gz$')
106107

@@ -129,6 +130,7 @@
129130
mode: 0755
130131
owner: root
131132
group: root
133+
remote_src: "{{ _common_remote_download | bool }}"
132134
loop: "{{ _common_binaries }}"
133135
become: true
134136
notify:

roles/_common/vars/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ _common_tls_server_config: {}
1919
_common_http_server_config: {}
2020
_common_basic_auth_users: {}
2121
_common_web_listen_address: ""
22+
_common_remote_download: "false"
2223
# Variables that should not be overwritten
2324
__common_binary_basename: "{{ _common_binary_url | urlsplit('path') | basename }}"
2425
__common_github_api_headers: "{{ {'GITHUB_TOKEN': lookup('ansible.builtin.env', 'GITHUB_TOKEN')} if (lookup('ansible.builtin.env', 'GITHUB_TOKEN')) else {} }}"

roles/node_exporter/defaults/main.yml

+5
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,8 @@ node_exporter_system_user: "{{ node_exporter_system_group }}"
3333
node_exporter_config_dir: "/etc/node_exporter"
3434
# Local path to stash the archive and its extraction
3535
node_exporter_local_cache_path: "/tmp/node_exporter-{{ ansible_system | lower }}-{{ _node_exporter_go_ansible_arch }}/{{ node_exporter_version }}"
36+
# If true (the default) we download node exporter archive and unpack it on localhost, before
37+
# uploading it to the remote host(s). If false we download and unpack the archive on the remote
38+
# host directly, which may be useful if the ansible controller host is slower (network-wise)
39+
# than the remote host.
40+
node_exporter_remote_download: false

roles/node_exporter/meta/argument_specs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,6 @@ argument_specs:
8282
node_exporter_config_dir:
8383
description: "Path to directory with node_exporter configuration"
8484
default: "/etc/node_exporter"
85+
node_exporter_remote_download:
86+
description: "Determines if the node exporter package archive is downloaded and extracted on local (false) or remote host (true)"
87+
default: true

roles/node_exporter/tasks/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
_common_system_user: "{{ node_exporter_system_user }}"
2222
_common_config_dir: "{{ node_exporter_config_dir }}"
2323
_common_binary_unarchive_opts: ['--strip-components=1']
24+
_common_remote_download: "{{ node_exporter_remote_download }}"
2425
tags:
2526
- node_exporter_install
2627

0 commit comments

Comments
 (0)