blob: 2b9b9f2a908de4fd250ca1343f6bd5be06017a32 [file] [log] [blame]
Zack Williamsa2763112017-01-03 11:38:38 -07001---
2# cord-profile/defaults/main.yml
3
Zack Williamsc989f262017-05-11 13:02:59 -07004# where the cord_profile directory is on the config node
Andy Bavier7b90cb82017-06-22 10:33:00 -04005config_cord_profile_dir: "/opt/cord_profile"
Zack Williamsc989f262017-05-11 13:02:59 -07006
Zack Williams79286962017-07-10 12:24:37 -07007head_cord_dir: "/opt/cord"
8
Zack Williams44845c62017-04-21 13:57:14 -07009pki_dir: "{{ playbook_dir }}/pki"
Zack Williamsc989f262017-05-11 13:02:59 -070010ssh_pki_dir: "{{ playbook_dir }}/ssh_pki"
Zack Williams44845c62017-04-21 13:57:14 -070011credentials_dir: "{{ playbook_dir }}/credentials"
Zack Williamsa2763112017-01-03 11:38:38 -070012
Zack Williams79286962017-07-10 12:24:37 -070013head_credentials_dir: "/opt/credentials"
14
Zack Williamsc989f262017-05-11 13:02:59 -070015# where cord files are copied to on head node
16head_cord_profile_dir: "/opt/cord_profile"
17head_cord_dir: "/opt/cord"
18
Andy Baviera6cffe12017-03-15 17:33:42 -040019# For storing OpenStack images
20image_dir: /opt/images
21
Zack Williamsa2763112017-01-03 11:38:38 -070022# used in xos.yaml.j2, if True, other synchronizer container will not be started
23frontend_only: False
24
25# Set to True if you want to copy the admin-openrc.sh openstack config file
26use_openstack: True
27
Andy Baviera6cffe12017-03-15 17:33:42 -040028# Will be overridden if doing a full pod build
Zack Williamsfe284a12017-07-01 11:00:04 -070029use_maas: False
Andy Baviera6cffe12017-03-15 17:33:42 -040030
Zack Williamsa2763112017-01-03 11:38:38 -070031# set to True to create the xos_redis container in the bootstrap context
32use_redis: True
33
34use_vtn: True
35
Zack Williams1396aa32017-06-06 10:28:29 -070036# Docker related settings
37deploy_docker_registry: ""
38deploy_docker_tag: "candidate"
39
Zack Williamsa2763112017-01-03 11:38:38 -070040xos_docker_networks:
41 - "xos"
42
Zack Williamsa2763112017-01-03 11:38:38 -070043xos_bootstrap_ui_port: 9001
44xos_ui_port: 9000
45
46xos_users: []
47
48xos_libraries:
49 - "ng-xos-lib"
50
Zack Williamsc989f262017-05-11 13:02:59 -070051# name of master ssh key for this pod
52pod_sshkey_name: "headnode"
Zack Williamsa2763112017-01-03 11:38:38 -070053
Zack Williamsc989f262017-05-11 13:02:59 -070054xos_services: []
Zack Williamsa2763112017-01-03 11:38:38 -070055
56xos_tosca_config_templates: []
57
58xos_other_templates: []
59
Matteo Scandolod2221342017-05-25 18:16:57 -070060# XOS Config (xos_config.yaml)
61xos_db_name: xos
62xos_db_username: postgres
63xos_db_password: password
64xos_logging_level: debug
65xos_logging_channels:
66 - file
67 - console
Matteo Scandolof9d872d2017-05-30 15:36:32 -070068xos_dir: /opt/xos
Matteo Scandolod2221342017-05-25 18:16:57 -070069
Matteo Scandolo667334f2017-02-26 10:58:08 -080070# GUI Config [new GUI], used in app.config.js.j2 and style.config.js.j2
Zack Williamsc989f262017-05-11 13:02:59 -070071
72enabled_gui_extensions: []
73
Matteo Scandolo667334f2017-02-26 10:58:08 -080074gw_port: 3000
75gui_api_endpoint: "/xosapi/v1"
76gui_websocket: "/"
77gui_project_name: "R-CORD"
78gui_favicon: "cord-favicon.png"
79gui_background: "cord-bg.jpg"
80gui_payoff: "Your VNF orchestrator"
81gui_logo: "cord-logo.png"
82gui_routes:
83 - label: "Slices"
84 state: "xos.core.slice"
85 - label: "Nodes"
86 state: "xos.core.node"
87 - label: "Instances"
88 state: "xos.core.instance"
89
Zack Williamsa2763112017-01-03 11:38:38 -070090# GUI branding, used in xos_common_config.j2
91disable_minidashboard: "True"
92gui_branding_name: "OpenCloud"
93gui_branding_icon: "/static/logo.png"
94gui_branding_favicon: "/static/favicon.png"
95gui_branding_bg: "/static/bg.jpg"
96gui_service_view_class: False
97
Zack Williams3eca6472017-06-22 18:18:38 -070098# used in admin-openrc.sh.j2
99keystone_admin_password: "{{ lookup('password', credentials_dir ~ '/cord_keystone_admin chars=ascii_letters,digits') }}"
100
Zack Williamsa2763112017-01-03 11:38:38 -0700101# used in deployment.yaml.j2
102xos_admin_user: "xosadmin@opencord.org"
Zack Williams44845c62017-04-21 13:57:14 -0700103xos_admin_pass: "{{ lookup('password', credentials_dir ~ '/xosadmin@opencord.org chars=ascii_letters,digits') }}"
Zack Williamsa2763112017-01-03 11:38:38 -0700104xos_admin_first: XOS
105xos_admin_last: Admin
106
Zack Williams3eca6472017-06-22 18:18:38 -0700107site_name: placeholder-sitename
108site_humanname: "Placeholder Site HumanName"
109site_suffix: "{{ site_name }}.test"
Zack Williamsa2763112017-01-03 11:38:38 -0700110
Zack Williams3eca6472017-06-22 18:18:38 -0700111deployment_type: placeholder-deploymenttype
Zack Williamsa2763112017-01-03 11:38:38 -0700112
113deployment_flavors:
114 - m1.small
115 - m1.medium
116 - m1.large
117 - m1.xlarge
118
119# used in management-net.yaml.j2
120management_network_cidr: 172.27.0.0/24
121
122use_management_hosts: False
123management_hosts_net_cidr: 10.1.0.1/24
124management_hosts_net_range_xos_low: "10.1.0.128"
125management_hosts_net_range_xos_high: "10.1.0.254"
126
127# used in fabric.yaml.j2
128use_fabric: False
129fabric_network_cfg_json: "/opt/cord_profile/fabric-network-cfg.json"
130
131# used in volt-devices.yaml.j2
132volt_devices:
133 - name: voltdev
134 openflow_id: "of:1000000000000001"
135 access_devices: "2 222, 3 223, 4 224"
136 agent_mac: "AA:BB:CC:DD:EE:FF"
137 agent_port_mappings: "of:0000000000000002/2 DE:AD:BE:EF:BA:11, of:0000000000000002/3 BE:EF:DE:AD:BE:EF"
138
139cord_app_version: "1.2-SNAPSHOT"