When developers write code, they might use an integrated development environment (IDE) or a good text editor to catch syntax errors as they write. Similarly, many text editors have special modes and syntax highlighting for popular markup languages such as YAML, which can help you quickly find errors.
[ Download now: A system administrator's guide to IT automation. ]
Coders also have compilers or runtimes that can catch logical errors, which syntax highlights in a text editor can't predict. Markup languages don't generally have compilers, and while there are often processors that fail when attempting to parse your errant file, that's often not when you want to find out that you've made a mistake. A linter is designed to catch errors in data before a file is processed. This saves you (or your automated workflow) from errors during a critical stage of operation.
The ansible-lint
command is a linter designed specifically for Ansible playbooks.
Install
The easiest way to install ansible-lint
is with pip
:
$ python3 -m pip install --user ansible-lint
Confirm the installation:
$ ansible-lint --version
ansible-lint x.y.z using ansible X.Y.Z
[ Learn more: Ansible vs. Terraform, clarified ]
Ansible-lint
As its name implies, ansible-lint
is a YAML linter specific to Ansible playbooks. That means when you lint a playbook, it's not just looking at the markup syntax but also how you're using Ansible modules. For instance, take this simple playbook that creates a set of directories on a host:
---
- hosts: localhost
tasks:
- name: Create directories
ansible.builtin.file:
path: "{{ item }}" # this is wrong
state: directory # this is wrong
with_items:
- '~/Foo'
- '~/Bar
- '~/Baz
With this playbook saved as standard_dirs.yaml
in the directory structure ~/Ansible/playbooks
, run the ansible-lint
command:
$ cd ~/Ansible
$ ansible-lint
ERROR! conflicting action statements: ansible.builtin.file, path
The error appears to be in '/home/tux/Ansible/playbooks/standard_dirs.yaml': line 4, column 7, but may be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
tasks:
- name: Create directories
^ here
Finished with 1 failure(s), 0 warning(s) on 2 files.
The linter identified an error beginning with the very first line of the first (and only) task. This tells you where to start looking. In this case, it's pretty obvious to start looking there because there's only one task, but this can be a valuable hint in a complex playbook. As I've already identified the error with comments, you can fix the indentation errors. If you don't know why those are errors, read my YAML for Ansible article.
[ Learn how to create, scale, and manage automation by registering for the Ansible basics: Automation technical overview course, available on demand. ]
---
- hosts: localhost
tasks:
- name: Create directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
with_items:
- '~/Foo'
- '~/Bar
- '~/Baz
Now rerun the command:
$ cd ~/Ansible
$ ansible-lint
WARNING Listing 2 violation(s) that are fatal
risky-file-permissions: File permissions unset or incorrect
playbooks/standard_dirs.yaml:4 Task/Handler: Create directories
yaml: no new line character at the end of file (new-line-at-end-of-file)
playbooks/standard_dirs.yaml:12
This time, there's no error but a fatal warning from two separate rules. The risky-file-permissions
module warns that I haven't specified file permissions in a task that creates folders. The yaml
rule, enabled because I also have yamllint
installed on my system, warns that there's no newline character at the end of the file.
Fix the first error by specifying file permissions and the second error by adding a new line at the end of the YAML:
---
- hosts: localhost
tasks:
- name: Create directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
mode: '775'
with_items:
- '~/Foo'
- '~/Bar
- '~/Baz
One more try:
$ ansible-lint
$
No output means no errors.
Lint early, lint often
If you're writing code or markup in a language with a linter, it just makes sense to lint. There are linters specific to YAML, but ansible-lint
takes it a step further and checks your Ansible tasks themselves. It's a powerful way to protect yourself from errors during execution and possibly from hours of debugging.
저자 소개
Seth Kenlon is a Linux geek, open source enthusiast, free culture advocate, and tabletop gamer. Between gigs in the film industry and the tech industry (not necessarily exclusive of one another), he likes to design games and hack on code (also not necessarily exclusive of one another).
채널별 검색
오토메이션
기술, 팀, 인프라를 위한 IT 자동화 최신 동향
인공지능
고객이 어디서나 AI 워크로드를 실행할 수 있도록 지원하는 플랫폼 업데이트
오픈 하이브리드 클라우드
하이브리드 클라우드로 더욱 유연한 미래를 구축하는 방법을 알아보세요
보안
환경과 기술 전반에 걸쳐 리스크를 감소하는 방법에 대한 최신 정보
엣지 컴퓨팅
엣지에서의 운영을 단순화하는 플랫폼 업데이트
인프라
세계적으로 인정받은 기업용 Linux 플랫폼에 대한 최신 정보
애플리케이션
복잡한 애플리케이션에 대한 솔루션 더 보기
가상화
온프레미스와 클라우드 환경에서 워크로드를 유연하게 운영하기 위한 엔터프라이즈 가상화의 미래