blob: 66c122f4dd4f744bb713c359c35512e1823fd86a [file] [log] [blame]
Matteo Scandolo3896c472017-08-01 13:31:42 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
Srikanth Vavilapallia7ae6512017-02-13 02:29:21 +000017---
18# instantiate-monitoringservice.yml
19# Adds the monitoringservice to the currently running pod
20# TODO: Due to some timing issues, the monitroing service synchronizer is not completely getting
21# onboarded with in the retries of onboard-monitoringservice.yml, so the ansible script would
22# eventually fail. Until it is fixed, once monitoring service synchronizer is ready, run this
23# ansible playbook which has only tasks for instantiating the monitoring service models.
24
Srikanth Vavilapallia7ae6512017-02-13 02:29:21 +000025- name: Create monitoringservice config
26 hosts: head
27 roles:
28 - monitoringservice-config
29
30- include: add-onboard-containers-playbook.yml
31
32- name: Check to see if XOS UI is ready
33 hosts: xos_ui
34 connection: docker
35 roles:
36 - xos-ready
37
38- name: Instantiate monitoringservice and channel
39 hosts: xos_ui
40 connection: docker
41 roles:
42 - monitoringservice-instantiate
43