summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Configure Nova to use the Ironic servicebaserock/tiagogomes/baserock/tiagogomes/openstack-v5/ironic-with-fran-patchesTiago Gomes2015-04-091-1/+39
|
* Configure IronicTiago Gomes2015-04-0914-1/+1495
|
* Add Ironic service and clientTiago Gomes2015-04-096-0/+32
| | | | Also, add the dependencies of these packages.
* Add parted to toolsTiago Gomes2015-04-092-0/+14
| | | | It is required for Ironic.
* Add the tftp-hpa serverTiago Gomes2015-04-092-0/+10
| | | | | Busybox's tftp server doesn't support map files, which is required for Openstack Ironic.
* Add tcpdump to toolsTiago Gomes2015-04-093-0/+18
|
* Enable nova serial consoleRichard Maw2015-03-234-2/+22
| | | | | | This enables serial console access to local nodes from the host machine by running `novaconsole $VM_NAME` after it has been installed by running pip install git+http://github.com/larsks/novaconsole.git
* Tidy up some nova service enablementRichard Maw2015-03-231-23/+6
|
* systemd: disable building of testsRichard Maw2015-03-231-3/+5
|
* Fix openstack-nova-compute.service duplicate descriptionRichard Maw2015-03-231-1/+1
|
* openstack-net-config: Check whether we need to run before gethering network ↵Richard Maw2015-03-231-4/+4
| | | | config
* openstack: Disable nova firewall managementRichard Maw2015-03-231-1/+1
| | | | | | | | | | | | | | This should be handled by neutron, and except for the mis-configuration, it should have been. However, since both neutron and nova were configured to handle firewalling, they would both install their firewall rules into iptables, and it would be random which one would be used as either service is likely to start before the other and install their hook first. The result being that we'd randomly not be able to reach VMs after a reboot, unless we'd installed the same firewall rules in both nova and neutron.
* neutron.configure: Ensure /var/run is a symlink to /runRichard Maw2015-03-231-0/+9
| | | | | | | | | If /var/run is a directory that is not emptied every boot, then it will contain references to stale network namespaces, which do not work when neutron tries to create networks. If it is flushed appropriately then neutron will create the namespaces when it needs to.
* Don't enable libvirt-guests.serviceRichard Maw2015-03-231-1/+0
| | | | | | | We don't think it's necessary, and it sometimes races with nova-compute.service, failing if certain network devices aren't created yet, so let's see if Nova should be the one starting the machines up at boot time.
* Update systemd to development snapshot including netlink fixRichard Maw2015-03-231-2/+2
|
* Move patch link creation into openvswitchRichard Maw2015-03-237-72/+19
| | | | | | | | | | This is required for Open vSwitch to be able to signal that every network interface required has been configured. It also means we no longer need to set the links to promiscuous mode ourselves, since interfaces need to be set in promiscuous mode to allow bridging to work and Open vSwitch handles this responsibility if it is configured to be the one to do the link setup.
* Only start neutron-openvswitch-plugin after cleanup has finishedRichard Maw2015-03-231-2/+4
| | | | | | | | | ovs-cleanup is responsible for reconciling the state in openvswitch's database and neutron's configuration. This can fail if other services are also changing ovs configuration though, and the missing dependency resulted in neutron removing the interface while ovs-cleanup was about to do so.
* Rejigger networking so the bridge has the MAC of the external interfaceRichard Maw2015-03-231-9/+20
| | | | | | | | | | This allows the subsequent DHCP request to get the same IP address back, which means it only needs one address for first boot, and the address can be pre-allocated by the DHCP server before deployment. This is needed for the floating address range to be allocated in some set-ups, such as our local one at the office, where a subnet in a different class is routed to the server.
* Ensure newly brought up devices are correctly configuredRichard Maw2015-03-231-16/+21
| | | | | | | | | This adds masking config for the virtual devices to prevent them from attempting to DHCP, and stops us from giving the ip of eno1 to the bridge device, since eno1's address was obtained by DHCP, so it's against the rules to statically allocate that address to an interface. Now, we DHCP for a new address for the bridge.
* Deallocate IP address from bound interface after bindingRichard Maw2015-03-231-0/+3
| | | | | | If we leave that interface with its address, then the routing table is incorrect, as it will try to send connections out from an interface that cannot handle them.
* After initial switching setup, switch DHCP to external ifaceRichard Maw2015-03-231-0/+15
| | | | | | | | | | After the external interface has been bound to Open vSwitch, we should not attempt to DHCP on it, as it won't receive the DHCP responses. Attempting to DHCP results in startup stalling on network-online.target, because systemd-networkd-wait-online.service looks at every network interface it should configure based on the [Match] sections, and waits for all of them to be configured by systemd-networkd, which will never finish if DHCP is broken.
* Start Open vSwitch before network-pre.targetRichard Maw2015-03-231-0/+2
| | | | | | | We want the network links to be configured before we start systemd-networkd, because we have to use ovs instead of networkd's config for the interfaces in OpenStack, but we still want to use networkd to manage DHCP on the interfaces.
* Fix region typoFrancisco Redondo Marchena2015-03-231-1/+1
|
* Set novncproxy server ip in nova.confFrancisco Redondo Marchena2015-03-234-9/+13
| | | | | | | | | | | | The ip of the compute node is gotten from the bridge device and this value is set in the novncproxy configuration in nova.conf. This is required for horizon to access to the compute node so have access to the VMs created on it. Also: - remove /usr/share/vnc which is now created in the vnc chunk. - add explicity where to find novnc client to nova-novncproxy systemd unit.
* Add novncPedro Alvarez2015-03-232-0/+17
|
* Add ntpd to openstack systemPatrick Darley2015-03-231-0/+2
|
* Rename stratum to nfsPatrick Darley2015-03-231-1/+1
| | | | | Caused problems with nfs stratum not being built into the system. Thanks to Richard Ipsum for helping spot this.
* Collect statics for horizon and move install commands to the chunkFrancisco Redondo Marchena2015-03-235-29/+66
| | | | | | Collecting the static files (css, js, png, ...) for horizon, compressing them and storing them in a folder accessible by horizon, fixes the problem when some css are not found and improves loading and navigating the pages.
* Revert if needed: thrift with erlang and max-jobs=1Pedro Alvarez2015-03-231-9/+6
|
* Fix Redirect in HorizonZara Zaimeche2015-03-231-1/+3
|
* Fix apache-httpd and horizon setup because of the change of layoutFrancisco Redondo Marchena2015-03-232-4/+4
|
* Add Ansible to Openstack systemPedro Alvarez2015-03-231-0/+2
|
* Fix issues with ordering and enabling neutron-setup and neutron-serverFrancisco Redondo Marchena2015-03-232-1/+2
|
* Disable login requirement for sudo for cinder, nova and neutron usersFrancisco Redondo Marchena2015-03-233-0/+6
| | | | | | Requiredtty is dissable by default but just in case we enable it in the future for the rest of the users, cinder, nova and neutron needs login disable to run commands being superuser.
* Rabbitmq-server was installing things in /usr, remove themPedro Alvarez2015-03-231-1/+8
|
* Fix .blackhole location for HorizonFrancisco Redondo Marchena2015-03-231-1/+1
|
* Add sudoers files for cinder, nova and neutron on post-install timeFrancisco Redondo Marchena2015-03-236-24/+21
|
* Install rootwrap filters on post-install timeFrancisco Redondo Marchena2015-03-235-24/+29
| | | | | | Installing rootwrap filters from their repositories will make easy to deal with updates. Also move neutron rootwrap filters to the right location without duplication.
* Add nfs to openstack-server systemFrancisco Redondo Marchena2015-03-231-0/+2
|
* Add OpenStack System and ClusterRichard Maw2015-03-232-0/+133
|
* WIP: Add OpenStack initial configurationRichard Maw2015-03-23155-0/+17182
| | | | | | | | TODO: Split this out into: 1. initial config (openstack/etc) default values 2+. as many individual changes to initial config as possible to extract, including support scripts and configuration extensions
* WIP: Add openstack-services stratumRichard Maw2015-03-2311-0/+897
| | | | | | | | | | | TODO: Split this up into more strata, since a lot of dependencies are included where it may be better to split them out. Possible candidates for splitting out: - rabbitmq - all the python packages TODO: Rename xattr to python-xattr
* Enable netfilter support in kernelsbaserock/openstack-v5-kernelFrancisco Redondo Marchena2015-03-235-0/+490
|
* Enable ipset kernel configurationFrancisco Redondo Marchena2015-03-235-0/+85
|
* Enable iproute2 support to kernelsFrancisco Redondo Marchena2015-03-235-0/+15
|
* Enable Intel KVM support in x86 kernelsFrancisco Redondo Marchena2015-03-232-0/+2
|
* Enable all the IP_NF kernel supportFrancisco Redondo Marchena2015-03-235-0/+65
|
* Enable virtual ethernet support in kernelsFrancisco Redondo Marchena2015-03-238-0/+8
|
* Enable Open vSwitch kernel supportFrancisco Redondo Marchena2015-03-235-0/+50
|
* Enable ebtables in kernelsFrancisco Redondo Marchena2015-03-235-0/+20
| | | | These modules are needed for ebtables and netfilter.