Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 1 | --- |
| 2 | # vars/frontend-rcord.yaml |
| 3 | # creates a mock R-CORD pod |
| 4 | |
| 5 | site_name: mock-rcord |
| 6 | deployment_type: "Mock R-CORD Pod" |
| 7 | |
| 8 | xos_admin_user: xosadmin@opencord.org |
| 9 | xos_admin_pass: "{{ lookup('password', 'credentials/xosadmin@opencord.org chars=ascii_letters,digits') }}" |
| 10 | xos_admin_first: XOS |
| 11 | xos_admin_last: admin |
| 12 | |
| 13 | frontend_only: True |
| 14 | use_openstack: False |
| 15 | use_vtn: False |
| 16 | |
| 17 | build_xos_base_image: True |
| 18 | |
| 19 | xos_tosca_config_templates: |
| 20 | - sample.yaml |
| 21 | - management-net.yaml |
| 22 | - mock-onos.yaml |
| 23 | - cord-services.yaml |
| 24 | - public-net.yaml |
| 25 | # - test-subscriber.yaml # broken? Missing lan_network config on vOLT ? |
| 26 | - volt-devices.yaml |
| 27 | |
| 28 | # GUI branding |
| 29 | gui_branding_name: "CORD" |
| 30 | gui_branding_icon: "/static/cord-logo.png" |
| 31 | gui_branding_favicon: "/static/cord-favicon.png" |
| 32 | gui_branding_bg: "/static/cord-bg.jpg" |
| 33 | |
| 34 | # paths defined in manifest/default.xml |
| 35 | xos_services: |
| 36 | - name: volt |
| 37 | path: onos-apps/apps/olt |
| 38 | - name: onos |
| 39 | path: orchestration/xos_services/onos-service |
| 40 | - name: vrouter |
| 41 | path: orchestration/xos_services/vrouter |
| 42 | - name: vsg |
| 43 | path: orchestration/xos_services/vsg |
| 44 | - name: vtr |
| 45 | path: orchestration/xos_services/vtr |
| 46 | - name: fabric |
| 47 | path: orchestration/xos_services/fabric |
| 48 | |
| 49 | xos_service_sshkeys: |
| 50 | - name: onos_rsa |
| 51 | source_path: "/dev/null" |
| 52 | - name: onos_rsa.pub |
| 53 | source_path: "/dev/null" |
| 54 | - name: volt_rsa |
| 55 | source_path: "/dev/null" |
| 56 | - name: volt_rsa.pub |
| 57 | source_path: "/dev/null" |
| 58 | - name: vsg_rsa |
| 59 | source_path: "/dev/null" |
| 60 | - name: vsg_rsa.pub |
| 61 | source_path: "/dev/null" |
| 62 | |
| 63 | # site domain suffix |
| 64 | site_suffix: opencloud.us |
| 65 | |
| 66 | # SSL server certificate generation |
| 67 | server_certs: |
| 68 | - cn: "xos-core.{{ site_suffix }}" |
| 69 | subj: "/C=US/ST=California/L=Menlo Park/O=ON.Lab/OU=Test Deployment/CN=xos-core.{{ site_suffix }}" |
| 70 | altnames: |
| 71 | - "DNS:xos-core.{{ site_suffix }}" |
| 72 | |