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