blob: 029d9e8963bcaed57ef5ba4c66cdc1becf228ec0 [file] [log] [blame]
Zack Williamsa2763112017-01-03 11:38:38 -07001---
2# cord-profile/defaults/main.yml
3
4cord_dir: "{{ ansible_user_dir + '/cord' }}"
5cord_profile_dir: "{{ ansible_user_dir + '/cord_profile' }}"
Andy Bavierf0b5d7d2017-03-15 16:19:03 -04006pki_dir: "/opt/pki"
Zack Williamsa2763112017-01-03 11:38:38 -07007
8# used in xos.yaml.j2, if True, other synchronizer container will not be started
9frontend_only: False
10
11# Set to True if you want to copy the admin-openrc.sh openstack config file
12use_openstack: True
13
14# set to True to create the xos_redis container in the bootstrap context
15use_redis: True
16
17use_vtn: True
18
19xos_docker_networks:
20 - "xos"
21
22xos_docker_volumes: []
23
24xos_bootstrap_ui_port: 9001
25xos_ui_port: 9000
26
27xos_users: []
28
29xos_libraries:
30 - "ng-xos-lib"
31
32xos_services: []
33xos_service_sshkeys: []
34
35xos_images: []
36
37xos_tosca_config_templates: []
38
39xos_other_templates: []
40
Matteo Scandolo667334f2017-02-26 10:58:08 -080041# GUI Config [new GUI], used in app.config.js.j2 and style.config.js.j2
42gw_port: 3000
43gui_api_endpoint: "/xosapi/v1"
44gui_websocket: "/"
45gui_project_name: "R-CORD"
46gui_favicon: "cord-favicon.png"
47gui_background: "cord-bg.jpg"
48gui_payoff: "Your VNF orchestrator"
49gui_logo: "cord-logo.png"
50gui_routes:
51 - label: "Slices"
52 state: "xos.core.slice"
53 - label: "Nodes"
54 state: "xos.core.node"
55 - label: "Instances"
56 state: "xos.core.instance"
57
Zack Williamsa2763112017-01-03 11:38:38 -070058# GUI branding, used in xos_common_config.j2
59disable_minidashboard: "True"
60gui_branding_name: "OpenCloud"
61gui_branding_icon: "/static/logo.png"
62gui_branding_favicon: "/static/favicon.png"
63gui_branding_bg: "/static/bg.jpg"
64gui_service_view_class: False
65
66# used in deployment.yaml.j2
67xos_admin_user: "xosadmin@opencord.org"
68xos_admin_pass: "{{ lookup('password', 'credentials/xosadmin@opencord.org chars=ascii_letters,digits') }}"
69xos_admin_first: XOS
70xos_admin_last: Admin
71
72site_name: sitename
73site_humanname: "Site HumanName"
74
75deployment_type: deploymenttype
76
77deployment_flavors:
78 - m1.small
79 - m1.medium
80 - m1.large
81 - m1.xlarge
82
83# used in management-net.yaml.j2
84management_network_cidr: 172.27.0.0/24
85
86use_management_hosts: False
87management_hosts_net_cidr: 10.1.0.1/24
88management_hosts_net_range_xos_low: "10.1.0.128"
89management_hosts_net_range_xos_high: "10.1.0.254"
90
91# used in fabric.yaml.j2
92use_fabric: False
93fabric_network_cfg_json: "/opt/cord_profile/fabric-network-cfg.json"
94
95# used in volt-devices.yaml.j2
96volt_devices:
97 - name: voltdev
98 openflow_id: "of:1000000000000001"
99 access_devices: "2 222, 3 223, 4 224"
100 agent_mac: "AA:BB:CC:DD:EE:FF"
101 agent_port_mappings: "of:0000000000000002/2 DE:AD:BE:EF:BA:11, of:0000000000000002/3 BE:EF:DE:AD:BE:EF"
102
103cord_app_version: "1.2-SNAPSHOT"