085713af39
Change-Id: I2f3e3aac1da800b41055bcb82cb7c4e07a20d8e2
32 lines
1.0 KiB
YAML
32 lines
1.0 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: Ensure Calico services are running
|
|
command: pgrep -a {{ item }}
|
|
with_items:
|
|
- calico-felix
|
|
- calico-dhcp-age
|
|
|
|
- name: Ensure that the Calico Felix agent is alive
|
|
shell: |
|
|
. /root/openrc
|
|
neutron agent-list | grep calico-felix
|
|
register: calico_felix_agent
|
|
until: calico_felix_agent.stdout.find(':-)') != -1
|
|
when:
|
|
- groups['neutron_calico_dhcp_agent'] | length > 0
|
|
retries: 5
|
|
delay: 10
|