blob: 4a5adbc7992cc8ede79da993b8d390cc5304fd7e [file] [log] [blame]
David K. Bainbridged54ca702016-07-13 22:27:12 -07001# Deployment configuration for a phyical hardware POD
2---
David K. Bainbridged54ca702016-07-13 22:27:12 -07003
Zack Williams0620c932017-01-25 14:36:31 -07004headnode:
5 ip: '10.90.0.2'
Zack Williams932646a2017-01-26 11:08:56 -07006 ansible_user: 'ubuntu'
7 ansible_ssh_pass: 'ubuntu'
8 ansible_ssh_port: 22
David K. Bainbridged54ca702016-07-13 22:27:12 -07009
Zack Williams0620c932017-01-25 14:36:31 -070010common:
Zack Williamse29c7d82017-02-10 16:36:02 -070011 # set to the profile of cord you want to install
12 cord_profile: 'rcord'
13
14 # directories on the head node that the cord dir is copied to, and profile is created in
15 cord_dir: '/opt/cord'
16 cord_profile_dir: '/opt/cord_profile'
Zack Williams31fbc6b2017-04-21 22:04:44 -070017 credentials_dir: '/opt/credentials'
18 pki_dir: '/opt/pki'
19 ssh_pki_dir: '/opt/ssh_pki'
Zack Williams0620c932017-01-25 14:36:31 -070020
David K. Bainbridged54ca702016-07-13 22:27:12 -070021 # Network address information for the head node:
22 #
23 # fabric_ip - the IP address and mask bits to be used to configure the network
24 # interface connected to the leaf - spine fabric
25 #
26 # management_ip - the IP address and mask bits to be used to configure the network
27 # interface connecting the head node to the POD internal
28 # management network. The head node will deliver DHCP addresses to
29 # the other compute nodes over this interface
30 #
31 # external_ip - the IP address and mask bits to be used to configure the network
32 # interface connecting the head node (and the POD) to the
33 # Internet. All traffic in the POD to external hosts will be
34 # NAT-ed through this interface
David K. Bainbridged54ca702016-07-13 22:27:12 -070035 # external_iface - the name of the interface that connects the head node to the
36 # Internet
37 # management_network - the network and mask bits to used for hosts on the management
38 # network
39 fabric_ip: '10.6.1.1/24'
David K. Bainbridge1705b812016-10-27 11:00:04 -070040 #fabric_range_low: '10.6.1.2'
41 #fabric_range_high: '10.6.1.100'
David K. Bainbridged54ca702016-07-13 22:27:12 -070042 management_ip: '10.6.0.1/24'
David K. Bainbridge9ea73d62016-11-22 12:59:28 -080043 #management_range_low: '10.6.0.2'
44 #management_range_high: '10.6.0.127'
David K. Bainbridged54ca702016-07-13 22:27:12 -070045 external_ip: '47.135.132.21/24'
David K. Bainbridged54ca702016-07-13 22:27:12 -070046 #external_iface: 'eth2'
Murat Parlakisikb7a6bf32016-08-24 06:52:28 -070047 management_network: 10.6.0.0/24
David K. Bainbridged54ca702016-07-13 22:27:12 -070048
49 # the skipTags options allow various part of the deployment to be skipped
50 # switch_support - does not deploy switch boot images to the PXE server
51 #
52 # reboot - will not reboot the head node after updating its network configuration
53 # this may mean the network configuration will not take effect, but will
David K. Bainbridge53e623f2016-10-04 21:11:37 -070054 # also prevent you from being locked out of the server if there is a
David K. Bainbridged54ca702016-07-13 22:27:12 -070055 # network configuration error.
56 #
57 # interface_config - will not modify the network configuration of the head node,
58 # including the consistent naming of the network interfaces
59 skipTags:
60 # - 'switch_support'
61 # - 'reboot'
62 # - 'interface_config'
63
David K. Bainbridge53e623f2016-10-04 21:11:37 -070064 # The following variable settings can be used to customize how the network interfaces
65 # are selected into the fabric and management bridge interface or ignored/excluded.
66 # See the documentation docs/quickstart_physical.md for more information about how
67 # to set these variables.
68 extraVars:
69 # - 'fabric_include_names=<name1>,<name2>,...'
70 # - 'fabric_include_module_types=<mtype1>,<mtype2>,...'
71 # - 'fabric_include_bus_types=<btype1>,<btype2>,...'
72 # - 'fabric_exclude_names=<name1>,<name2>,...'
73 # - 'fabric_exclude_module_types=<mtype1>,<mtype2>,...'
74 # - 'fabric_exclude_bus_types=<btype1>,<btype2>,...'
75 # - 'fabric_ignore_names=<name1>,<name2>,...'
76 # - 'fabric_ignore_module_types=<mtype1>,<mtype2>,...'
77 # - 'fabric_ignore_bus_types=<btype1>,<btype2>,...'
78 # - 'management_include_names=<name1>,<name2>,...'
79 # - 'management_include_module_types=<mtype1>,<mtype2>,...'
80 # - 'management_include_bus_types=<btype1>,<btype2>,...'
81 # - 'management_exclude_names=<name1>,<name2>,...'
82 # - 'management_exclude_module_types=<mtype1>,<mtype2>,...'
83 # - 'management_exclude_bus_types=<btype1>,<btype2>,...'
84 # - 'management_ignore_names=<name1>,<name2>,...'
85 # - 'management_ignore_module_types=<mtype1>,<mtype2>,...'
86 # - 'management_ignore_bus_types=<btype1>,<btype2>,...'
David K. Bainbridge1705b812016-10-27 11:00:04 -070087 # - ubuntu_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/archive.ubuntu.com/ubuntu trusty main universe"
88 # - ubuntu_updates_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/archive.ubuntu.com/ubuntu trusty-updates main universe"
89 # - docker_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/apt.dockerproject.org/repo ubuntu-trusty main"
90 # - java_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/webupd8team/java/ubuntu trusty main"
91 # - ansible_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/ansible/ansible/ubuntu trusty main"
92 # - maas_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/maas/stable/ubuntu trusty main"
93 # - dell_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/linux.dell.com/repo/community trusty openmanage"
94 # - juju_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/juju/stable/ubuntu trusty main"
David K. Bainbridge53e623f2016-10-04 21:11:37 -070095
David K. Bainbridge06052202016-12-02 14:22:40 -080096# If passwords are not set, random passwords will be generated
97passwords:
98 #compute_node: ubuntu
99 #maas_admin: admin
100 #maas_user: cord
101
David K. Bainbridged54ca702016-07-13 22:27:12 -0700102docker:
103 imageVersion: candidate