Проблема с созданием консольного кластера с использованием ansible - PullRequest
0 голосов
/ 30 августа 2018

Я пытаюсь создать кластер Консул, используя Ansible, и я использую этот пример https://github.com/brianshumate/ansible-consul. Я использую файл vagrant для 3 машин с Ubuntu

проблема в том, что задача Install unzip package, кажется, всегда терпит неудачу, и это выдает это сообщение об ошибке:

fatal: [consul1.consul -> localhost]: FAILED! => {"changed": false, "msg": "Could not detect which package manager to use. Try gathering facts or setting the \"use\" option."}

Кажется, что Ansible не может распознать менеджер пакетов, хотя ansible localhost -m setup | grep mgr показывает, что переменная ansible_pkg_mgr имеет значение apt

Я не уверен, что может быть источником проблемы. Я попытался запустить 3 машины Debian, и у меня все еще остается та же проблема.

UPDATE: вот файл задания для консула

---
# File: install.yml - package installation tasks for Consul

- name: Install OS packages
  package:
    name: "{{ item }}"
    state: present
  with_items: "{{ consul_os_packages }}"
  tags: installation

- name: Read package checksum file
  local_action:
    module: stat
    path: "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS"
  become: no
  run_once: true
  register: consul_checksum
  tags: installation

- name: Download package checksum file
  local_action:
    module: get_url
    url: "{{ consul_checksum_file_url }}"
    dest: "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS"
  become: no
  run_once: true
  tags: installation
  when: not consul_checksum.stat.exists | bool

- name: Read package checksum
  local_action:
    module: shell
      grep "{{ consul_pkg }}" "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS" | awk '{print $1}'
  become: no
  run_once: true
  register: consul_sha256
  tags: installation

- name: Check Consul package file
  local_action:
    module: stat
    path: "{{ role_path }}/files/{{ consul_pkg }}"
  become: no
  run_once: true
  register: consul_package
  tags: installation

- name: Download Consul package
  local_action:
    module: get_url
    url: "{{ consul_zip_url }}"
    dest: "{{ role_path }}/files/{{ consul_pkg }}"
    checksum: "sha256:{{ consul_sha256.stdout }}"
    timeout: "42"
  become: no
  run_once: true
  tags: installation
  when: not consul_package.stat.exists | bool

- name: Update alpine package manager (apk)
  local_action:
    module: apk
    update_cache: yes
  run_once: true
  when: lookup('file','/etc/alpine-release')

- name: Install unzip package
  local_action:
    module: package
    name: unzip
    state: present
  run_once: true
  when:
    - consul_install_dependencies | bool

- name: Unarchive Consul package
  local_action:
    module: unarchive
    src: "{{ role_path }}/files/{{ consul_pkg }}"
    dest: "{{ role_path }}/files/"
    creates: "{{ role_path }}/files/consul"
  become: no
  run_once: true
  tags: installation

- name: Install Consul
  copy:
    src: "{{ role_path }}/files/consul"
    dest: "{{ consul_bin_path }}/consul"
    owner: "{{ consul_user }}"
    group: "{{ consul_group }}"
    mode: 0755
  tags: installation

- name: Daemon reload systemd in case the binaries upgraded
  command: systemctl daemon-reload
  become: yes
  notify: restart consul
  when:
    - ansible_service_mgr == "systemd"
    - consul_install_upgrade

- name: Cleanup
  local_action: file path="{{ item }}" state="absent"
  become: no
  with_fileglob: "{{ role_path }}/files/consul"
  run_once: true
  tags: installation

1 Ответ

0 голосов
/ 31 августа 2018

Проблема с диспетчером пакетов Alpine, так или иначе, это может вызвать ошибку в Ubuntu, поэтому все, что я сделал, это использовал Apt вместо Apk.

вот новая версия файла задачи

---
# File: install.yml - package installation tasks for Consul

- name: Install OS packages
  package:
    name: "{{ item }}"
    state: present
  with_items: "{{ consul_os_packages }}"
  tags: installation

- name: Read package checksum file
  local_action:
    module: stat
    path: "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS"
  become: no
  run_once: true
  register: consul_checksum
  tags: installation

- name: Download package checksum file
  local_action:
    module: get_url
    url: "{{ consul_checksum_file_url }}"
    dest: "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS"
  become: no
  run_once: true
  tags: installation
  when: not consul_checksum.stat.exists | bool

- name: Read package checksum
  local_action:
    module: shell
      grep "{{ consul_pkg }}" "{{ role_path }}/files/consul_{{ consul_version }}_SHA256SUMS" | awk '{print $1}'
  become: no
  run_once: true
  register: consul_sha256
  tags: installation

- name: Check Consul package file
  local_action:
    module: stat
    path: "{{ role_path }}/files/{{ consul_pkg }}"
  become: no
  run_once: true
  register: consul_package
  tags: installation

- name: Download Consul package
  local_action:
    module: get_url
    url: "{{ consul_zip_url }}"
    dest: "{{ role_path }}/files/{{ consul_pkg }}"
    checksum: "sha256:{{ consul_sha256.stdout }}"
    timeout: "42"
  become: no
  run_once: true
  tags: installation
  when: not consul_package.stat.exists | bool

- name: Install unzip package
  apt:
    name: unzip
    state: present
  run_once: true
  when:
    - consul_install_dependencies | bool

- name: Unarchive Consul package
  local_action:
    module: unarchive
    src: "{{ role_path }}/files/{{ consul_pkg }}"
    dest: "{{ role_path }}/files/"
    creates: "{{ role_path }}/files/consul"
  become: no
  run_once: true
  tags: installation

- name: Install Consul
  copy:
    src: "{{ role_path }}/files/consul"
    dest: "{{ consul_bin_path }}/consul"
    owner: "{{ consul_user }}"
    group: "{{ consul_group }}"
    mode: 0755
  tags: installation

- name: Daemon reload systemd in case the binaries upgraded
  command: systemctl daemon-reload
  become: yes
  notify: restart consul
  when:
    - ansible_service_mgr == "systemd"
    - consul_install_upgrade

- name: Cleanup
  local_action: file path="{{ item }}" state="absent"
  become: no
  with_fileglob: "{{ role_path }}/files/consul"
  run_once: true
  tags: installation
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...