De acordo com a sintaxe Ansible
, depois de tasks:
, você precisa recuar - name:
e as outras tarefas abaixo, um espaço a mais como em:
---
- hosts: all
become: yes
tasks:
- name: Copy certificate files.
Estou executando este manual, mas está falhando na última tarefa. executando isso a partir do host do Ubuntu,
---
- hosts: all
become: yes
tasks:
- name: Copy certificate files.
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
mode: 0644
with_items:
- { src: "/registry_certs/domain.crt", dest: "/usr/local/share/ca-certificates/ca.crt" }
- command: sudo apt-get install --reinstall ca-certificates
- command: sudo update-ca-certificates
- name: "just force systemd to reread configs (2.4 and above)"
systemd:
name: "{{ item }}"
state: started
daemon_reload: yes
with_items:
- docker
- kubelet
erro
ubuntu@kops:/etc/ansible$ sudo ansible-playbook certificate_new.yml -l aws --syntax-check
ERROR! no action detected in task
The error appears to have been in '/etc/ansible/certificate_new.yml': line 18, column 6, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: "just force systemd to reread configs (2.4 and above)"
^ here