bb77c33a0f
With the merge of https://review.openstack.org/520177 in the tests repo some ansible-lint failures which previously were not being picked up are now detected. This adds the appropriate skip tags to the tasks so that they are not evaluated by ansible-lint. Change-Id: I44a534b2c0bd28522d411f364da179896fc8497f
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
---
|
|
# Copyright 2016, Logan Vig <logan2211@gmail.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Test calico
|
|
hosts: neutron_calico_dhcp_agent
|
|
user: root
|
|
gather_facts: true
|
|
tasks:
|
|
- name: Ensure Calico services are running
|
|
command: pgrep -a {{ item }}
|
|
with_items:
|
|
- calico-felix
|
|
- calico-dhcp-age
|
|
tags:
|
|
- skip_ansible_lint
|
|
|
|
- name: Ensure that the Calico Felix agent is alive
|
|
command: openstack --os-cloud default network agent list -f json
|
|
register: calico_felix_agent
|
|
until: |-
|
|
ansible_nodename in (calico_felix_agent.stdout
|
|
| from_json
|
|
| selectattr('Binary', 'equalto', 'calico-felix')
|
|
| map(attribute='Host') | list)
|
|
retries: 5
|
|
delay: 10
|
|
with_items: "{{ ansible_play_hosts }}"
|
|
delegate_to: "{{ groups['utility_all'][0] }}"
|
|
run_once: yes
|
|
tags:
|
|
- skip_ansible_lint
|
|
|
|
vars_files:
|
|
- common/test-vars.yml
|