blob: 0d0a4291657ca6a62f1c8723b02cca743eb61df3 [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 }}
Woojoong Kim04d12162017-11-27 10:59:08 -080034 - as_sgi_ip: {{ as_sgi_ip }}
35 - as_sgi_mac: {{ as_sgi_mac }}
36 - enb_s1u_ip: {{ enb_s1u_ip }}
37 - enb_s1u_mac: {{ enb_s1u_mac }}
Woojoong Kimf002aec2017-10-25 14:43:37 -070038
39 roles:
40 - interface_config
Woojoong Kim04d12162017-11-27 10:59:08 -080041 #- build_and_run #Temporally comment out until epc-service is completed.
42
Woojoong Kimf002aec2017-10-25 14:43:37 -070043