Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 1 | |
| 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 Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 17 | --- |
| 18 | # vars/mock-mcord.yaml |
| 19 | # creates a mock MCORD pod |
| 20 | |
| 21 | site_name: mock-mcord |
| 22 | deployment_type: "Mock M-CORD Pod" |
| 23 | |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 24 | credentials_dir: "{{ playbook_dir }}/credentials" |
| 25 | xos_admin_user: "xosadmin@opencord.org" |
| 26 | xos_admin_pass: "{{ lookup('password', credentials_dir ~ '/xosadmin@opencord.org chars=ascii_letters,digits') }}" |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 27 | xos_admin_first: XOS |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 28 | xos_admin_last: Admin |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 29 | |
| 30 | frontend_only: True |
| 31 | use_openstack: False |
| 32 | use_vtn: False |
Andy Bavier | 1cac001 | 2017-03-13 10:06:18 -0400 | [diff] [blame] | 33 | needs_pki_install: True |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 34 | |
| 35 | build_xos_base_image: True |
| 36 | |
| 37 | xos_tosca_config_templates: |
| 38 | - sample.yaml |
| 39 | - management-net.yaml |
| 40 | - mock-mcord.yaml |
Matteo Scandolo | ae45a2f | 2017-06-27 14:14:19 -0700 | [diff] [blame] | 41 | - xos-gui-extensions.yml |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 42 | |
Matteo Scandolo | 667334f | 2017-02-26 10:58:08 -0800 | [diff] [blame] | 43 | # GUI Config [new GUI] |
| 44 | gui_project_name: "M-CORD" |
| 45 | gui_payoff: "Your way toward 5G" |
| 46 | gui_routes: |
| 47 | - label: "Slices" |
| 48 | state: "xos.core.slice" |
| 49 | - label: "Nodes" |
| 50 | state: "xos.core.node" |
| 51 | - label: "Instances" |
| 52 | state: "xos.core.instance" |
| 53 | - label: "MCORD" |
| 54 | state: "xos.mcord" |
| 55 | - label: "Topology" |
| 56 | state: "xos.mcord.topology" |
| 57 | parent: "xos.mcord" |
| 58 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 59 | # GUI branding |
| 60 | gui_branding_name: "M-CORD" |
| 61 | gui_branding_icon: "/static/cord-logo.png" |
| 62 | gui_branding_favicon: "/static/cord-favicon.png" |
| 63 | gui_branding_bg: "/static/mcord-bg.jpg" |
| 64 | gui_service_view_class: "core.views.mCordServiceGrid.ServiceGridView" |
| 65 | |
| 66 | # site domain suffix |
| 67 | site_suffix: opencloud.us |
| 68 | |
| 69 | # SSL server certificate generation |
| 70 | server_certs: |
| 71 | - cn: "xos-core.{{ site_suffix }}" |
| 72 | subj: "/C=US/ST=California/L=Menlo Park/O=ON.Lab/OU=Test Deployment/CN=xos-core.{{ site_suffix }}" |
| 73 | altnames: |
| 74 | - "DNS:xos-core.{{ site_suffix }}" |