From 0b81c6a6c444d36146797411bed967595c29ec40 Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Thu, 17 Dec 2020 07:21:09 -0800 Subject: [PATCH] Fix to use ansible-lint instead of ansible-lint.sh (#7047) tests/scripts/ansible-lint.sh was written on the doc, but there was not such file actually. We can use ansible-lint command to check ansible yml files without any options. This updates to use the command. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0e3cb6143..f102f1326 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ To install development dependencies you can use `pip install -r tests/requiremen #### Linting -Kubespray uses `yamllint` and `ansible-lint`. To run them locally use `yamllint .` and `./tests/scripts/ansible-lint.sh` +Kubespray uses `yamllint` and `ansible-lint`. To run them locally use `yamllint .` and `ansible-lint` #### Molecule