yaml의 오류 들여쓰기로 주석이 잘못되었습니다
1511 단어 ansible
- name: set name resolve
blockinfile:
path: /etc/hosts
block: |
{{ hostvars[master-1]['ansible_facts']['eth1']['ipv4']['address'] }} cluster-endpoint
#loop: "{{ groups['master'] }}"
ansible가 실수를 했어요.The task includes an option with an undefined variable. The error was: 'master' is undefined
#
들여쓴 줄이 잘못되었기 때문에 #
이 줄에 주석을 달 수 없습니다. 이것은 명령으로 간주됩니다.들여쓰기가 잘못된 것 같지만, 진정한 문제는 호스트 이름을 인용해야 한다는 것이다.
master-1
Reference
이 문제에 관하여(yaml의 오류 들여쓰기로 주석이 잘못되었습니다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/icy1900/a-wrong-indent-in-yaml-make-comment-invalid-4co0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)