Verify YAML syntax in gates
This patchset implements yamllint test to all *.yml files. Also fixes syntax errors to make jobs to pass. Change-Id: I3186adf9835b4d0cada272d156b17d1bc9c2b799
This commit is contained in:
parent
7851de5c3c
commit
ea1a1dee0d
15
.yamllint
Normal file
15
.yamllint
Normal file
@ -0,0 +1,15 @@
|
||||
extends: default
|
||||
ignore: |
|
||||
.tox/
|
||||
|
||||
rules:
|
||||
line-length: disable
|
||||
truthy: disable
|
||||
braces:
|
||||
max-spaces-inside: 1
|
||||
comments:
|
||||
# Ignore first space in comment because we set default options as:
|
||||
#openstack_version: "pike"
|
||||
require-starting-space: true
|
||||
ignore: |
|
||||
etc/kolla/globals.yml
|
@ -1,3 +1,4 @@
|
||||
---
|
||||
- project:
|
||||
check:
|
||||
jobs:
|
||||
|
@ -37,4 +37,3 @@
|
||||
roles:
|
||||
- { role: baremetal,
|
||||
tags: baremetal }
|
||||
|
||||
|
@ -49,4 +49,3 @@
|
||||
with_dict: "{{ chrony_services }}"
|
||||
notify:
|
||||
- Restart chrony container
|
||||
|
||||
|
@ -45,4 +45,3 @@
|
||||
or glance_conf.changed | bool
|
||||
or policy_overwriting.changed | bool
|
||||
or glance_registry_container.changed | bool
|
||||
|
||||
|
@ -125,4 +125,3 @@
|
||||
notify:
|
||||
- Restart glance-api container
|
||||
- Restart glance-registry container
|
||||
|
||||
|
@ -109,4 +109,3 @@
|
||||
with_dict: "{{ haproxy_services }}"
|
||||
notify:
|
||||
- "Restart {{ item.key }} container"
|
||||
|
||||
|
@ -131,4 +131,3 @@
|
||||
- horizon.enabled | bool
|
||||
notify:
|
||||
- Restart horizon container
|
||||
|
||||
|
@ -37,4 +37,3 @@
|
||||
- service.enabled | bool
|
||||
- action != "config"
|
||||
notify: Restart memcached container
|
||||
|
||||
|
@ -86,4 +86,3 @@
|
||||
group: "{{ config_owner_group }}"
|
||||
when: inventory_hostname in groups['compute']
|
||||
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
||||
|
||||
|
@ -436,4 +436,3 @@
|
||||
with_dict: "{{ neutron_services }}"
|
||||
notify:
|
||||
- "Restart {{ item.key }} container"
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
---
|
||||
- name: Install package python-os-xenapi
|
||||
package:
|
||||
name: python-os-xenapi
|
||||
|
@ -203,4 +203,3 @@
|
||||
with_dict: "{{ nova_services }}"
|
||||
notify:
|
||||
- "Restart {{ item.key }} container"
|
||||
|
||||
|
@ -70,4 +70,3 @@
|
||||
with_dict: "{{ openvswitch_services }}"
|
||||
notify:
|
||||
- "Restart {{ item.key }} container"
|
||||
|
||||
|
@ -8,4 +8,3 @@
|
||||
- item.value.enabled | bool
|
||||
- item.value.host_in_groups | bool
|
||||
with_dict: "{{ ovsdpdk_services }}"
|
||||
|
||||
|
@ -10,10 +10,8 @@
|
||||
key: "{{ config_owner_group }}"
|
||||
register: getent_group
|
||||
|
||||
#(duonghq) it's only a basic check, should be refined later
|
||||
# NOTE(duonghq): it's only a basic check, should be refined later
|
||||
- name: Check if ansible user can do passwordless sudo
|
||||
shell: sudo -n true
|
||||
register: result
|
||||
failed_when: result | failed
|
||||
|
||||
|
||||
|
@ -34,4 +34,3 @@ skydive_analyzer_image_full: "{{ skydive_analyzer_image }}:{{ skydive_analyzer_t
|
||||
skydive_agent_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-skydive-agent"
|
||||
skydive_agent_tag: "{{ openstack_release }}"
|
||||
skydive_agent_image_full: "{{ skydive_agent_image }}:{{ skydive_agent_tag }}"
|
||||
|
||||
|
@ -41,4 +41,3 @@
|
||||
- config_json.changed | bool
|
||||
or skydive_conf.changed |bool
|
||||
or skydive_agent_container.changed | bool
|
||||
|
||||
|
@ -31,4 +31,3 @@
|
||||
- container_facts['skydive_agent'] is not defined
|
||||
- inventory_hostname in groups[skydive_agent.group]
|
||||
- skydive_agent.enabled | bool
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
---
|
||||
- name: Stopping Kolla containers
|
||||
command: /tmp/kolla-stop/tools/stop-containers
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
other:
|
||||
- Congress doesn't work correctly out of the box and will
|
||||
not deploy. See Bug #1634641.
|
||||
not deploy. See Bug https://bugs.launchpad.net/kolla-ansible/+bug/1634641.
|
||||
|
@ -6,4 +6,3 @@ deprecations:
|
||||
|
||||
* /etc/kolla/config/database.conf
|
||||
* /etc/kolla/config/messaging.conf
|
||||
|
||||
|
@ -2,4 +2,3 @@
|
||||
deprecations:
|
||||
- The nova-network was deprecated, we remove it from the nova ansible
|
||||
role.
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
---
|
||||
- hosts: all
|
||||
vars:
|
||||
logs_dir: "/tmp/logs"
|
||||
|
4
tox.ini
4
tox.ini
@ -30,11 +30,15 @@ setenv = VIRTUAL_ENV={envdir}
|
||||
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
||||
|
||||
[testenv:pep8]
|
||||
deps =
|
||||
{[testenv]deps}
|
||||
yamllint
|
||||
commands =
|
||||
{toxinidir}/tools/run-bashate.sh
|
||||
flake8 {posargs}
|
||||
python {toxinidir}/tools/validate-all-file.py
|
||||
bandit -r ansible kolla_ansible tests tools
|
||||
yamllint .
|
||||
|
||||
[testenv:bandit]
|
||||
commands = bandit -r ansible kolla_ansible tests tools
|
||||
|
Loading…
Reference in New Issue
Block a user