blob: a714b1a96a38313c63bfd5f5bf7fa53df3140bc9 [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:
Zack Williamsa2763112017-01-03 11:38:38 -070039 - management-net.yaml
40 - mock-onos.yaml
41 - cord-services.yaml
42 - public-net.yaml
43 # - test-subscriber.yaml # broken? Missing lan_network config on vOLT ?
Matteo Scandoloae45a2f2017-06-27 14:14:19 -070044 - xos-gui-extensions.yml
Zack Williamsa2763112017-01-03 11:38:38 -070045
Matteo Scandolo667334f2017-02-26 10:58:08 -080046# GUI Config [new GUI]
47gw_port: 3000
48gui_api_endpoint: "/xosapi/v1"
49gui_websocket: "/"
50gui_project_name: "R-CORD"
51gui_favicon: "cord-favicon.png"
52gui_background: "cord-bg.jpg"
53gui_payoff: "Your VNF orchestrator"
54gui_logo: "cord-logo.png"
55gui_routes:
56 - label: "Slices"
57 state: "xos.core.slice"
58 - label: "Nodes"
59 state: "xos.core.node"
60 - label: "Instances"
61 state: "xos.core.instance"
Matteo Scandolo667334f2017-02-26 10:58:08 -080062
Matteo Scandolo40e10d52017-03-08 08:04:37 -080063enabled_gui_extensions:
64 - name: vtr
65 path: orchestration/xos_services/vtr/xos/gui
Matteo Scandolo4b3d7682017-03-27 10:34:24 -070066 - name: rcord
67 path: orchestration/profiles/rcord/xos/gui
Matteo Scandolo40e10d52017-03-08 08:04:37 -080068
Matteo Scandolo667334f2017-02-26 10:58:08 -080069# GUI branding [OLD GUI to be removed]
Zack Williamsa2763112017-01-03 11:38:38 -070070gui_branding_name: "CORD"
71gui_branding_icon: "/static/cord-logo.png"
72gui_branding_favicon: "/static/cord-favicon.png"
73gui_branding_bg: "/static/cord-bg.jpg"
74
75# paths defined in manifest/default.xml
76xos_services:
77 - name: volt
Andy Baviera4638cb2017-08-30 16:02:49 -070078 path: orchestration/xos_services/olt-service
Sapan Bhatia1996c042017-06-17 17:46:23 -070079 keypair: volt_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070080 - name: onos
81 path: orchestration/xos_services/onos-service
Sapan Bhatia1996c042017-06-17 17:46:23 -070082 keypair: onos_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070083 - name: vrouter
84 path: orchestration/xos_services/vrouter
Scott Baker7f95bc32017-08-21 09:40:10 -070085 - name: addressmanager
86 path: orchestration/xos_services/addressmanager
Zack Williamsa2763112017-01-03 11:38:38 -070087 - name: vsg
88 path: orchestration/xos_services/vsg
Sapan Bhatia1996c042017-06-17 17:46:23 -070089 keypair: vsg_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070090 - name: vtr
91 path: orchestration/xos_services/vtr
Sapan Bhatia1996c042017-06-17 17:46:23 -070092 keypair: vsg_rsa
Zack Williamsa2763112017-01-03 11:38:38 -070093 - name: fabric
94 path: orchestration/xos_services/fabric
95
Matteo Scandolo3997d022017-05-09 12:20:37 -070096profile_library: "rcord"
97
Zack Williamsa2763112017-01-03 11:38:38 -070098# site domain suffix
Matteo Scandolo3997d022017-05-09 12:20:37 -070099site_suffix: opencord.org
Zack Williamsa2763112017-01-03 11:38:38 -0700100
101# SSL server certificate generation
102server_certs:
103 - cn: "xos-core.{{ site_suffix }}"
104 subj: "/C=US/ST=California/L=Menlo Park/O=ON.Lab/OU=Test Deployment/CN=xos-core.{{ site_suffix }}"
105 altnames:
106 - "DNS:xos-core.{{ site_suffix }}"
Matteo Scandolob92469d2017-07-28 17:32:00 -0700107
108xos_images: []