diff --git a/.ansible-lint b/.ansible-lint index c550f56..6c78de1 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,8 +1,11 @@ --- warn_list: - role-name + - name[play] - name[casing] - - no-handler - command-instead-of-module - - yaml[comments-indentation] - jinja[spacing] + - no-changed-when + - no-handler + - yaml[comments] + - yaml[comments-indentation] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f7278a..7e2bc34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: python-version: '3.x' - name: Install test dependencies - run: pip install 'ansible${{ matrix.ansible-version }}' molecule[docker] docker + run: pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker - name: Run Molecule tests run: | diff --git a/README.md b/README.md index 52dce6b..67c082e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ when using `keepalived_install_method: native` #### Variables * `keepalived_git_repo`: [default: `https://github.com/acassen/keepalived.git`]: Keepalived git repo -* `keepalived_version`: [default: `v2.2.2`]: Keepalived version to install +* `keepalived_version`: [default: `v2.2.8`]: Keepalived version to install * `keepalived_install_method`: [default `git`]: The way to install Keepalived (e.g. `native` (from Ubuntu repo), `git`) * `keepalived_install`: [default: `[]`]: Additional packages to install (e.g. `['libnl-3-dev', 'libnl-genl-3-dev', 'libnl-route-3-dev', 'libnfnetlink-dev']`) diff --git a/defaults/main.yml b/defaults/main.yml index f4c3880..d602b35 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -2,7 +2,7 @@ --- keepalived_install_method: git keepalived_git_repo: https://github.com/acassen/keepalived.git -keepalived_version: v2.2.2 +keepalived_version: v2.2.8 keepalived_install: [] keepalived_configure_options: [] keepalived_options: []