blob: 7c25a49ba5f10adadca1fa445d3bbc5ad2024e87 [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
Matteo Scandolof9d872d2017-05-30 15:36:32 -070062xos_dir: /opt/xos
Matteo Scandolod2221342017-05-25 18:16:57 -070063
Matteo Scandolo667334f2017-02-26 10:58:08 -080064# GUI Config [new GUI], used in app.config.js.j2 and style.config.js.j2
65gw_port: 3000
66gui_api_endpoint: "/xosapi/v1"
67gui_websocket: "/"
68gui_project_name: "R-CORD"
69gui_favicon: "cord-favicon.png"
70gui_background: "cord-bg.jpg"
71gui_payoff: "Your VNF orchestrator"
72gui_logo: "cord-logo.png"
73gui_routes:
74 - label: "Slices"
75 state: "xos.core.slice"
76 - label: "Nodes"
77 state: "xos.core.node"
78 - label: "Instances"
79 state: "xos.core.instance"
80
Zack Williamsa2763112017-01-03 11:38:38 -070081# GUI branding, used in xos_common_config.j2
82disable_minidashboard: "True"
83gui_branding_name: "OpenCloud"
84gui_branding_icon: "/static/logo.png"
85gui_branding_favicon: "/static/favicon.png"
86gui_branding_bg: "/static/bg.jpg"
87gui_service_view_class: False
88
89# used in deployment.yaml.j2
90xos_admin_user: "xosadmin@opencord.org"
Zack Williams44845c62017-04-21 13:57:14 -070091xos_admin_pass: "{{ lookup('password', credentials_dir ~ '/xosadmin@opencord.org chars=ascii_letters,digits') }}"
Zack Williamsa2763112017-01-03 11:38:38 -070092xos_admin_first: XOS
93xos_admin_last: Admin
94
95site_name: sitename
96site_humanname: "Site HumanName"
97
98deployment_type: deploymenttype
99
100deployment_flavors:
101 - m1.small
102 - m1.medium
103 - m1.large
104 - m1.xlarge
105
106# used in management-net.yaml.j2
107management_network_cidr: 172.27.0.0/24
108
109use_management_hosts: False
110management_hosts_net_cidr: 10.1.0.1/24
111management_hosts_net_range_xos_low: "10.1.0.128"
112management_hosts_net_range_xos_high: "10.1.0.254"
113
114# used in fabric.yaml.j2
115use_fabric: False
116fabric_network_cfg_json: "/opt/cord_profile/fabric-network-cfg.json"
117
118# used in volt-devices.yaml.j2
119volt_devices:
120 - name: voltdev
121 openflow_id: "of:1000000000000001"
122 access_devices: "2 222, 3 223, 4 224"
123 agent_mac: "AA:BB:CC:DD:EE:FF"
124 agent_port_mappings: "of:0000000000000002/2 DE:AD:BE:EF:BA:11, of:0000000000000002/3 BE:EF:DE:AD:BE:EF"
125
126cord_app_version: "1.2-SNAPSHOT"