You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an ansible repository with two roles.
{repository_root}/roles/docker-ce
{repository_root}/roles/shaneholloman.ntp
when I try to create a config file ansibledoctor.yml i get an error
`base_dir: "./roles/docker-ce"
role:
name:
- "docker-ce"
2024-12-18 10:26:43 [critical ] Configuration error
role.name must is_type_of <class 'str'> but it is ['docker-ce'] in env main`
when i try name: "docker-ce"
then i get a long python error File "/opt/homebrew/Cellar/[email protected]/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/re/__init__.py", line 167, in match return _compile(pattern, flags).match(string) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^ TypeError: expected string or bytes-like object, got 'NoneType'
i am not sure how to make ansibledoctor to scan my roles and create the readme file.
The text was updated successfully, but these errors were encountered:
I have an ansible repository with two roles.
{repository_root}/roles/docker-ce
{repository_root}/roles/shaneholloman.ntp
when I try to create a config file ansibledoctor.yml i get an error
`base_dir: "./roles/docker-ce"
role:
name:
- "docker-ce"
2024-12-18 10:26:43 [critical ] Configuration error
role.name must is_type_of <class 'str'> but it is ['docker-ce'] in env main`
when i try
name: "docker-ce"
then i get a long python error
File "/opt/homebrew/Cellar/[email protected]/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/re/__init__.py", line 167, in match return _compile(pattern, flags).match(string) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^ TypeError: expected string or bytes-like object, got 'NoneType'
i am not sure how to make ansibledoctor to scan my roles and create the readme file.
The text was updated successfully, but these errors were encountered: