2019-04-10 17:04:16 +08:00
|
|
|
---
|
|
|
|
parseable: true
|
|
|
|
skip_list:
|
|
|
|
# see https://docs.ansible.com/ansible-lint/rules/default_rules.html for a list of all default rules
|
2020-07-27 21:24:17 +08:00
|
|
|
|
|
|
|
# DO NOT add any other rules to this skip_list, instead use local `# noqa` with a comment explaining WHY it is necessary
|
2019-05-21 02:23:14 +08:00
|
|
|
|
|
|
|
# These rules are intentionally skipped:
|
|
|
|
#
|
2021-07-12 15:00:47 +08:00
|
|
|
# [role-name] "meta/main.yml" Role name role-name does not match ``^+$`` pattern
|
|
|
|
# Meta roles in Kubespray don't need proper names
|
|
|
|
# (Disabled in June 2021)
|
|
|
|
- 'role-name'
|
|
|
|
|
|
|
|
# [var-naming] "defaults/main.yml" File defines variable 'apiVersion' that violates variable naming standards
|
|
|
|
# In Kubespray we use variables that use camelCase to match their k8s counterparts
|
|
|
|
# (Disabled in June 2021)
|
|
|
|
- 'var-naming'
|
2023-02-06 17:35:16 +08:00
|
|
|
|
|
|
|
# [fqcn-builtins]
|
|
|
|
# Roles in kubespray don't need fully qualified collection names
|
|
|
|
# (Disabled in Feb 2023)
|
|
|
|
- 'fqcn-builtins'
|
2023-06-26 18:15:45 +08:00
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
# We use template in names
|
2023-06-26 18:15:45 +08:00
|
|
|
- 'name[template]'
|
|
|
|
|
|
|
|
# No changed-when on commands
|
|
|
|
# (Disabled in June 2023 after ansible upgrade; FIXME)
|
|
|
|
- 'no-changed-when'
|
|
|
|
|
|
|
|
# Disable run-once check with free strategy
|
|
|
|
# (Disabled in June 2023 after ansible upgrade; FIXME)
|
|
|
|
- 'run-once[task]'
|
2023-03-03 16:23:08 +08:00
|
|
|
exclude_paths:
|
|
|
|
# Generated files
|
|
|
|
- tests/files/custom_cni/cilium.yaml
|
2023-06-26 18:15:45 +08:00
|
|
|
- venv
|