Bump ansible-lint
Sync the versions with kolla-ansible Depends-On: https://review.opendev.org/c/openstack/kayobe/+/883744 Change-Id: I744d64e1e69021f93497fcf127a6abd315f04669
This commit is contained in:
parent
f74dd4859c
commit
b4f1d3c993
@ -1,19 +1,17 @@
|
||||
---
|
||||
use_default_rules: true
|
||||
skip_list:
|
||||
# [E503] Tasks that run when changed should likely be handlers
|
||||
# TODO(mnasiadka): Rework roles to do handlers instead of when: *.changed
|
||||
- no-handler
|
||||
# [E208] permissions not mentioned
|
||||
# FIXME(mnasiadka): Rework file/template to include permissions
|
||||
- risky-file-permissions
|
||||
# [unnamed-task] All tasks should be named
|
||||
# FIXME(mgoddard): Add names to all tasks
|
||||
- unnamed-task
|
||||
# [ignore-errors] Use failed_when and specify error conditions instead of using ignore_errors
|
||||
# FIXME(mgoddard): Use failed_when instead of ignore_errors
|
||||
- ignore-errors
|
||||
# Package installs should not use latest
|
||||
- package-latest
|
||||
# Commands should not change things if nothing needs doing
|
||||
- no-changed-when
|
||||
# Experimental
|
||||
- experimental
|
||||
# Use FQCN
|
||||
- fqcn[action]
|
||||
- fqcn[action-core]
|
||||
# Galaxy changelog and runtime defined
|
||||
- galaxy[no-changelog]
|
||||
- galaxy[no-runtime]
|
||||
# don't fail on when at the end of block
|
||||
- key-order[task]
|
||||
# All tasks should be named
|
||||
- name[missing]
|
||||
# Variables names from within roles should use role_name_ as a prefix
|
||||
- var-naming[no-role-prefix]
|
||||
|
@ -3,7 +3,8 @@ namespace: openstack
|
||||
name: kolla
|
||||
version: 1.0.0
|
||||
readme: README.md
|
||||
authors: OpenStack
|
||||
authors:
|
||||
- "OpenStack"
|
||||
description: Ansible collection for the OpenStack Kolla project
|
||||
license:
|
||||
- GPL-3.0-or-later
|
||||
|
@ -16,6 +16,7 @@
|
||||
args:
|
||||
executable: /bin/bash
|
||||
become: True
|
||||
changed_when: true
|
||||
when:
|
||||
- apparmor_libvirtd_profile.stat.exists
|
||||
- not apparmor_libvirtd_disable_profile.stat.exists
|
||||
|
@ -2,6 +2,7 @@
|
||||
# TODO(inc0): Gates don't seem to have ufw executable, check for it instead of ignore errors
|
||||
- block:
|
||||
- name: Set firewall default policy
|
||||
# noqa ignore-errors
|
||||
become: True
|
||||
ufw:
|
||||
state: disabled
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
- import_tasks: post-install.yml
|
||||
|
||||
- name: configure ceph for zun
|
||||
- name: Configure ceph for zun
|
||||
include_tasks: configure-ceph-for-zun.yml
|
||||
when:
|
||||
- zun_configure_for_cinder_ceph | bool
|
||||
|
@ -3,6 +3,7 @@
|
||||
file:
|
||||
path: /etc/docker
|
||||
state: directory
|
||||
mode: 0755
|
||||
become: True
|
||||
|
||||
- name: Write docker config
|
||||
@ -75,6 +76,7 @@
|
||||
template:
|
||||
src: docker_systemd_service.j2
|
||||
dest: /etc/systemd/system/docker.service.d/kolla.conf
|
||||
mode: 0644
|
||||
when: >
|
||||
(docker_configure_for_zun | bool and 'zun-compute' in group_names) or
|
||||
docker_http_proxy | length > 0 or
|
||||
|
@ -62,8 +62,10 @@
|
||||
delay: 10
|
||||
|
||||
- name: Ensure containers are running after Docker upgrade
|
||||
# noqa no-changed-when
|
||||
command: "docker start {{ running_containers.stdout }}"
|
||||
become: true
|
||||
changed_when: true
|
||||
when:
|
||||
- docker_install_result is changed
|
||||
- running_containers.rc == 0
|
||||
|
@ -38,6 +38,7 @@
|
||||
Package: {{ docker_apt_package }}
|
||||
Pin: version {{ docker_apt_package_pin }}
|
||||
Pin-Priority: 1000
|
||||
mode: 0644
|
||||
become: True
|
||||
when: docker_apt_package_pin | length > 0
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
# linting
|
||||
ansible-lint>=4.2.0,!=4.3.0,<6.0.0 # MIT
|
||||
ansible-lint>=6.0.0,<6.17.0 # MIT
|
||||
bandit>=1.1.0 # Apache-2.0
|
||||
bashate>=0.5.1 # Apache-2.0
|
||||
doc8>=0.6.0 # Apache-2.0
|
||||
@ -16,4 +16,4 @@ stestr>=1.0.0 # Apache-2.0
|
||||
testtools>=1.4.0 # MIT
|
||||
|
||||
# sanity testing
|
||||
ansible-core
|
||||
ansible-core>=2.13.0,<2.15.0 # GPL3
|
||||
|
Loading…
Reference in New Issue
Block a user