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