не может его распаковать тк он не tar.gz
что я делаю не так?
содержимое тасок мы должны угадать
- name: Download node_exporter binary to local folder become: false ansible.builtin.get_url: url: "{{ node_exporter_binary_url }}" dest: "/tmp/node_exporter-{{ node_exporter_version }}.linux-{{ go_arch }}.tar.gz" checksum: "sha256:{{ __node_exporter_checksum }}" mode: '0644' register: _download_binary until: _download_binary is succeeded retries: 5 delay: 2 delegate_to: localhost check_mode: false - name: Unpack node_exporter binary become: false ansible.builtin.unarchive: src: "/tmp/node_exporter-{{ node_exporter_version }}.linux-{{ go_arch }}.tar.gz" dest: "/tmp" creates: "/tmp/node_exporter-{{ node_exporter_version }}.linux-{{ go_arch }}/node_exporter" extra_opts: - --strip-components=1 - -zxf delegate_to: localhost check_mode: false Стоковая комьюнити роль нод експортера Тестирую в молекуле в динде
А ошибка в чём состоит?
MSG: Failed to find handler for "/root/.ansible/tmp/ansible-tmp-1693248868.109354-891-58321667760572/source". Make sure the required command to extract the file is installed. Command "/bin/tar" detected as tar type None. GNU tar required. Unable to find required 'zipinfo' binary in the path.
А без extra_opts пробовал?
Обсуждают сегодня