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