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