blob: 1a0a8befaa6345fc6e5eac40ede7c23ca683a6e5 [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
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080017---
18# profile_manifests/mock-ecord.yml
19# creates a mock E-CORD pod
20
21site_name: mock-ecord
22deployment_type: "Mock E-CORD Pod"
23
Zack Williamsc989f262017-05-11 13:02:59 -070024credentials_dir: "{{ playbook_dir }}/credentials"
25xos_admin_user: "xosadmin@opencord.org"
26xos_admin_pass: "{{ lookup('password', credentials_dir ~ '/xosadmin@opencord.org chars=ascii_letters,digits') }}"
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080027xos_admin_first: XOS
Zack Williamsc989f262017-05-11 13:02:59 -070028xos_admin_last: Admin
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080029
30frontend_only: False
31use_openstack: False
32use_vtn: False
Andy Bavier1cac0012017-03-13 10:06:18 -040033needs_pki_install: True
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080034
35build_xos_base_image: True
36
37xos_tosca_config_templates:
38 - management-net.yaml
39 - mock-onos.yaml
Andrea Campanellabd56e782017-02-23 15:43:21 +010040# - vtn-service.yaml # rimosso
41# - fabric-service.yaml # rimosso
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080042 - ecord-services.yaml
Andrea Campanellabd56e782017-02-23 15:43:21 +010043 - vee-service.yaml
Matteo Scandoloae45a2f2017-06-27 14:14:19 -070044 - xos-gui-extensions.yml
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080045
Matteo Scandolo667334f2017-02-26 10:58:08 -080046# GUI Config [new GUI]
47gui_project_name: "E-CORD"
48gui_background: "cord-bg.jpg" # TODO find ecord image
49gui_payoff: "Your Enterprise VNF orchestrator"
50
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080051# GUI branding
52gui_branding_name: "ECORD"
53gui_branding_icon: "/static/cord-logo.png"
54gui_branding_favicon: "/static/cord-favicon.png"
55gui_branding_bg: "/static/cord-bg.jpg"
56
57# paths defined in manifest/default.xml
58xos_services:
59 - name: openstack
60 path: orchestration/xos_services/openstack
61 - name: onos
62 path: orchestration/xos_services/onos-service
Andrea Campanellabd56e782017-02-23 15:43:21 +010063 - name: vtn
64 path: onos-apps/apps/vtn
65 - name: fabric
66 path: orchestration/xos_services/fabric
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080067 - name: vrouter
68 path: orchestration/xos_services/vrouter
69 - name: veg
70 path: orchestration/xos_services/vEG
71 - name: vnodlocal
72 path: orchestration/xos_services/metronet-local
Andrea Campanellabd56e782017-02-23 15:43:21 +010073 - name: vee
74 path: orchestration/xos_services/vEE
Andrea Campanellabcfb2d62017-02-15 09:37:35 -080075
76xos_service_sshkeys:
77 - name: onos_rsa
78 source_path: "/dev/null"
79 - name: onos_rsa.pub
80 source_path: "/dev/null"
81 - name: veg_rsa
82 source_path: "/dev/null"
83 - name: veg_rsa.pub
84 source_path: "/dev/null"
85
86# site domain suffix
87site_suffix: opencloud.us
88
89# SSL server certificate generation
90server_certs:
91 - cn: "xos-core.{{ site_suffix }}"
92 subj: "/C=US/ST=California/L=Menlo Park/O=ON.Lab/OU=Test Deployment/CN=xos-core.{{ site_suffix }}"
93 altnames:
94 - "DNS:xos-core.{{ site_suffix }}"