blob: 8aba25f9b71b19f08b0c7412c4c1b69cee87d7a2 [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
Zack Williamsa2763112017-01-03 11:38:38 -070017---
18# vars/frontend-rcord.yaml
19# creates a mock R-CORD pod
20
21site_name: mock-rcord
22deployment_type: "Mock R-CORD Pod"
23
Zack Williamsc989f262017-05-11 13:02:59 -070024xos_admin_user: "xosadmin@opencord.org"
25xos_admin_pass: "{{ lookup('password', credentials_dir ~ '/xosadmin@opencord.org chars=ascii_letters,digits') }}"
Zack Williamsa2763112017-01-03 11:38:38 -070026xos_admin_first: XOS
Zack Williamsc989f262017-05-11 13:02:59 -070027xos_admin_last: Admin
28
Zack Williams1396aa32017-06-06 10:28:29 -070029credentials_dir: "{{ playbook_dir }}/credentials"
30
Zack Williamsa2763112017-01-03 11:38:38 -070031frontend_only: True
32use_openstack: False
Matteo Scandoloc2b4b522017-03-06 17:14:46 -080033use_vtn: True
Andy Bavier1cac0012017-03-13 10:06:18 -040034needs_pki_install: True
Zack Williamsa2763112017-01-03 11:38:38 -070035
36build_xos_base_image: True
37
38xos_tosca_config_templates:
39 - sample.yaml
40 - management-net.yaml
41 - mock-onos.yaml
42 - cord-services.yaml
43 - public-net.yaml
44 # - test-subscriber.yaml # broken? Missing lan_network config on vOLT ?
Matteo Scandoloae45a2f2017-06-27 14:14:19 -070045 - xos-gui-extensions.yml
Zack Williamsa2763112017-01-03 11:38:38 -070046
Matteo Scandolo667334f2017-02-26 10:58:08 -080047# GUI Config [new GUI]
48gw_port: 3000
49gui_api_endpoint: "/xosapi/v1"
50gui_websocket: "/"
51gui_project_name: "R-CORD"
52gui_favicon: "cord-favicon.png"
53gui_background: "cord-bg.jpg"
54gui_payoff: "Your VNF orchestrator"
55gui_logo: "cord-logo.png"
56gui_routes:
57 - label: "Slices"
58 state: "xos.core.slice"
59 - label: "Nodes"
60 state: "xos.core.node"
61 - label: "Instances"
62 state: "xos.core.instance"
Matteo Scandolo667334f2017-02-26 10:58:08 -080063
Matteo Scandolo40e10d52017-03-08 08:04:37 -080064enabled_gui_extensions:
65 - name: vtr
66 path: orchestration/xos_services/vtr/xos/gui
Matteo Scandolo4b3d7682017-03-27 10:34:24 -070067 - name: rcord
68 path: orchestration/profiles/rcord/xos/gui
Matteo Scandolo40e10d52017-03-08 08:04:37 -080069
Matteo Scandolo667334f2017-02-26 10:58:08 -080070# GUI branding [OLD GUI to be removed]
Zack Williamsa2763112017-01-03 11:38:38 -070071gui_branding_name: "CORD"
72gui_branding_icon: "/static/cord-logo.png"
73gui_branding_favicon: "/static/cord-favicon.png"
74gui_branding_bg: "/static/cord-bg.jpg"
75
76# paths defined in manifest/default.xml
77xos_services:
78 - name: volt
79 path: onos-apps/apps/olt
Sapan Bhatia1996c042017-06-17 17:46:23 -070080 keypair: volt_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070081 - name: onos
82 path: orchestration/xos_services/onos-service
Sapan Bhatia1996c042017-06-17 17:46:23 -070083 keypair: onos_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070084 - name: vrouter
85 path: orchestration/xos_services/vrouter
86 - name: vsg
87 path: orchestration/xos_services/vsg
Sapan Bhatia1996c042017-06-17 17:46:23 -070088 keypair: vsg_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070089 - name: vtr
90 path: orchestration/xos_services/vtr
Sapan Bhatia1996c042017-06-17 17:46:23 -070091 keypair: vsg_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070092 - name: fabric
93 path: orchestration/xos_services/fabric
94
Matteo Scandolo3997d022017-05-09 12:20:37 -070095profile_library: "rcord"
96
Zack Williamsa2763112017-01-03 11:38:38 -070097# site domain suffix
Matteo Scandolo3997d022017-05-09 12:20:37 -070098site_suffix: opencord.org
Zack Williamsa2763112017-01-03 11:38:38 -070099
100# SSL server certificate generation
101server_certs:
102 - cn: "xos-core.{{ site_suffix }}"
103 subj: "/C=US/ST=California/L=Menlo Park/O=ON.Lab/OU=Test Deployment/CN=xos-core.{{ site_suffix }}"
104 altnames:
105 - "DNS:xos-core.{{ site_suffix }}"