Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 1 | --- |
| 2 | # cord-profile/defaults/main.yml |
| 3 | |
| 4 | cord_dir: "{{ ansible_user_dir + '/cord' }}" |
| 5 | cord_profile_dir: "{{ ansible_user_dir + '/cord_profile' }}" |
| 6 | |
| 7 | # used in xos.yaml.j2, if True, other synchronizer container will not be started |
| 8 | frontend_only: False |
| 9 | |
| 10 | # Set to True if you want to copy the admin-openrc.sh openstack config file |
| 11 | use_openstack: True |
| 12 | |
| 13 | # set to True to create the xos_redis container in the bootstrap context |
| 14 | use_redis: True |
| 15 | |
| 16 | use_vtn: True |
| 17 | |
| 18 | xos_docker_networks: |
| 19 | - "xos" |
| 20 | |
| 21 | xos_docker_volumes: [] |
| 22 | |
| 23 | xos_bootstrap_ui_port: 9001 |
| 24 | xos_ui_port: 9000 |
| 25 | |
| 26 | xos_users: [] |
| 27 | |
| 28 | xos_libraries: |
| 29 | - "ng-xos-lib" |
| 30 | |
| 31 | xos_services: [] |
| 32 | xos_service_sshkeys: [] |
| 33 | |
| 34 | xos_images: [] |
| 35 | |
| 36 | xos_tosca_config_templates: [] |
| 37 | |
| 38 | xos_other_templates: [] |
| 39 | |
| 40 | # GUI branding, used in xos_common_config.j2 |
| 41 | disable_minidashboard: "True" |
| 42 | gui_branding_name: "OpenCloud" |
| 43 | gui_branding_icon: "/static/logo.png" |
| 44 | gui_branding_favicon: "/static/favicon.png" |
| 45 | gui_branding_bg: "/static/bg.jpg" |
| 46 | gui_service_view_class: False |
| 47 | |
| 48 | # used in deployment.yaml.j2 |
| 49 | xos_admin_user: "xosadmin@opencord.org" |
| 50 | xos_admin_pass: "{{ lookup('password', 'credentials/xosadmin@opencord.org chars=ascii_letters,digits') }}" |
| 51 | xos_admin_first: XOS |
| 52 | xos_admin_last: Admin |
| 53 | |
| 54 | site_name: sitename |
| 55 | site_humanname: "Site HumanName" |
| 56 | |
| 57 | deployment_type: deploymenttype |
| 58 | |
| 59 | deployment_flavors: |
| 60 | - m1.small |
| 61 | - m1.medium |
| 62 | - m1.large |
| 63 | - m1.xlarge |
| 64 | |
| 65 | # used in management-net.yaml.j2 |
| 66 | management_network_cidr: 172.27.0.0/24 |
| 67 | |
| 68 | use_management_hosts: False |
| 69 | management_hosts_net_cidr: 10.1.0.1/24 |
| 70 | management_hosts_net_range_xos_low: "10.1.0.128" |
| 71 | management_hosts_net_range_xos_high: "10.1.0.254" |
| 72 | |
| 73 | # used in fabric.yaml.j2 |
| 74 | use_fabric: False |
| 75 | fabric_network_cfg_json: "/opt/cord_profile/fabric-network-cfg.json" |
| 76 | |
| 77 | # used in volt-devices.yaml.j2 |
| 78 | volt_devices: |
| 79 | - name: voltdev |
| 80 | openflow_id: "of:1000000000000001" |
| 81 | access_devices: "2 222, 3 223, 4 224" |
| 82 | agent_mac: "AA:BB:CC:DD:EE:FF" |
| 83 | agent_port_mappings: "of:0000000000000002/2 DE:AD:BE:EF:BA:11, of:0000000000000002/3 BE:EF:DE:AD:BE:EF" |
| 84 | |
| 85 | cord_app_version: "1.2-SNAPSHOT" |