forked from packit/deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ansible-lint
22 lines (19 loc) · 849 Bytes
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# https://ansible-lint.readthedocs.io/en/latest/configuring.html
skip_list:
- yaml # clashes with prettier
warn_list:
- command-instead-of-module # sometimes this is desired
- fqcn[action] # htpasswd -> community.general.web_infrastructure.htpasswd
- args[module] # false positive: Unsupported parameters for k8s module
mock_modules:
# k8s module was moved to community.kubernetes collection in ansible 2.10
# and then later to kubernetes.core collection.
# Ansible 2.9.27 in F35 still contains the k8s module so we can ignore the error until F36,
# where we can switch to kubernetes.core.k8s as ansible-5.x in F36 contains it.
- k8s
# Ignore until F36, where these are in community.crypto collection (part of ansible-5.x rpm).
- openssh_keypair
- openssl_certificate
- openssl_csr
- openssl_privatekey
- htpasswd