mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-21 20:30:43 +00:00
feat: add option exclude_tags to disable auto-discovery (#289)
This commit is contained in:
parent
c43c876057
commit
ce0cd8a7e6
@ -97,6 +97,12 @@ class Config():
|
|||||||
"file": True,
|
"file": True,
|
||||||
"type": environs.Env().list
|
"type": environs.Env().list
|
||||||
},
|
},
|
||||||
|
"exclude_tags": {
|
||||||
|
"default": [],
|
||||||
|
"env": "EXCLUDE_TAGS",
|
||||||
|
"file": True,
|
||||||
|
"type": environs.Env().list
|
||||||
|
},
|
||||||
"role_detection": {
|
"role_detection": {
|
||||||
"default": True,
|
"default": True,
|
||||||
"env": "ROLE_DETECTION",
|
"env": "ROLE_DETECTION",
|
||||||
|
@ -112,7 +112,9 @@ class Parser:
|
|||||||
self._yaml_remove_comments(raw)
|
self._yaml_remove_comments(raw)
|
||||||
|
|
||||||
tags = list(set(flatten(nested_lookup("tags", raw))))
|
tags = list(set(flatten(nested_lookup("tags", raw))))
|
||||||
for tag in tags:
|
for tag in [
|
||||||
|
x for x in tags if x not in self.config.config["exclude_tags"]
|
||||||
|
]:
|
||||||
self._data["tag"][tag] = {"value": tag}
|
self._data["tag"][tag] = {"value": tag}
|
||||||
except (
|
except (
|
||||||
ruamel.yaml.composer.ComposerError, ruamel.yaml.scanner.ScannerError
|
ruamel.yaml.composer.ComposerError, ruamel.yaml.scanner.ScannerError
|
||||||
|
@ -18,33 +18,31 @@ Configuration options can be set in different places, which are processed in the
|
|||||||
|
|
||||||
```YAML
|
```YAML
|
||||||
---
|
---
|
||||||
# default is the current working directory
|
# Default is the current working directory.
|
||||||
role_dir:
|
role_dir:
|
||||||
# default is the basename of 'role_name'
|
# Default is the basename of 'role_name'.
|
||||||
role_name:
|
role_name:
|
||||||
# Auto-detect if the given directory is a role, can be disabled
|
# Auto-detect if the given directory is a role, can be disabled
|
||||||
# to parse loose files instead.
|
# to parse loose files instead.
|
||||||
role_detection: True
|
role_detection: True
|
||||||
# don't write anything to file system
|
# Don't write anything to file system
|
||||||
dry_run: False
|
dry_run: False
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
# possible options debug | info | warning | error | critical
|
# Possible options debug | info | warning | error | critical
|
||||||
level: "warning"
|
level: "warning"
|
||||||
# json logging can be enabled if a parsable output is required
|
# Json logging can be enabled if a parsable output is required
|
||||||
json: False
|
json: False
|
||||||
|
|
||||||
# path to write rendered template file
|
# Path to write rendered template file. Default is the current working directory.
|
||||||
# default is the current working directory
|
|
||||||
output_dir:
|
output_dir:
|
||||||
# default is in-build templates directory
|
# Default is built-in templates directory.
|
||||||
template_dir:
|
template_dir:
|
||||||
template: readme
|
template: readme
|
||||||
|
|
||||||
# don't ask to overwrite if output file exists
|
# Don't ask to overwrite if output file exists.
|
||||||
force_overwrite: False
|
force_overwrite: False
|
||||||
# load custom header from given file and append template output
|
# Load custom header from given file and append template output to it before write.
|
||||||
# to it before write.
|
|
||||||
custom_header: ""
|
custom_header: ""
|
||||||
|
|
||||||
exclude_files: []
|
exclude_files: []
|
||||||
@ -52,6 +50,10 @@ exclude_files: []
|
|||||||
# exclude_files:
|
# exclude_files:
|
||||||
# - molecule/
|
# - molecule/
|
||||||
# - files/**/*.py
|
# - files/**/*.py
|
||||||
|
|
||||||
|
# Exclude tags from automatic detection. Configured tags are only skipped
|
||||||
|
# if the tag is not used in an annotation.
|
||||||
|
exclude_tags: []
|
||||||
```
|
```
|
||||||
|
|
||||||
## CLI
|
## CLI
|
||||||
|
@ -153,8 +153,6 @@ demo_role_unset: some_value
|
|||||||
|
|
||||||
## Discovered Tags
|
## Discovered Tags
|
||||||
|
|
||||||
**_role-tag1_**
|
|
||||||
|
|
||||||
**_role-tag2_**
|
**_role-tag2_**
|
||||||
|
|
||||||
**_single-tag_**\
|
**_single-tag_**\
|
||||||
|
Loading…
Reference in New Issue
Block a user