blob: b15a9858a238b205405169cd6e21a742c463b7c8 [file] [log] [blame]
Wei-Yu Chenba043592017-10-18 17:08:51 +08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15---
16- hosts: {{ instance_name }}
Woojoong Kimf002aec2017-10-25 14:43:37 -070017 gather_facts: False
Wei-Yu Chenba043592017-10-18 17:08:51 +080018 connection: ssh
Woojoong Kimf002aec2017-10-25 14:43:37 -070019 remote_user: ubuntu
20 become: yes
21 become_user: root
22 become_method: sudo
Wei-Yu Chenba043592017-10-18 17:08:51 +080023 vars:
Woojoong Kimf002aec2017-10-25 14:43:37 -070024 - source_path: /root/ngic
25 - zmq_sub_ip: {{ zmq_sub_ip }}
26 - zmq_pub_ip: {{ zmq_pub_ip }}
27 - dp_comm_ip: {{ dp_comm_ip }}
28 - cp_comm_ip: {{ cp_comm_ip }}
29 - fpc_ip: {{ fpc_ip }}
30 - cp_nb_server_ip: {{ cp_nb_server_ip }}
31 - s1u_ip: {{ s1u_ip }}
32 - sgi_ip: {{ sgi_ip }}
33 - scenario: {{ scenario }}
34
35 roles:
36 - interface_config
37