RETIRED, Puppet elements for deployment of OpenStack
Go to file
Alex Schultz 502c4e00e0 Set remove-machine-id to executable
We had previously added an element to remove the machine id from the
images however the script is not executable so it wasn't actually being
run as part of the image building process. This change sets
70-remove-machine-id to be executable so that /etc/machine-id will
actually be removed from the images during the building process.
Additionally this changes the element to clear the file rather than
delete it as if the file is missing, things may not work as expected.

Change-Id: Id3f8c510801f8fcc1fc03415b0ebd23a2ff9da4c
Closes-Bug: #1672361
(cherry picked from commit ab7ac88006)
2017-09-26 16:33:23 +02:00
doc/source Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
elements Set remove-machine-id to executable 2017-09-26 16:33:23 +02:00
releasenotes/notes Enabled "tuned-profiles-cpu-partitioning" package for overcloud image 2017-04-07 19:40:29 +05:30
tests Update repository after OpenStack migration 2014-10-02 09:53:08 -04:00
.gitignore Update repository after OpenStack migration 2014-10-02 09:53:08 -04:00
.gitreview Update .gitreview for stable/newton 2016-09-29 13:00:18 -04:00
.testr.conf Update repository after OpenStack migration 2014-10-02 09:53:08 -04:00
LICENSE Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
MANIFEST.in Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
README.md Update README to move on Stackforge 2014-09-09 19:58:37 -04:00
babel.cfg Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
requirements.txt Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
run-flake8 Update repository after OpenStack migration 2014-10-02 09:53:08 -04:00
setup.cfg Update repository after OpenStack migration 2014-10-02 09:53:08 -04:00
setup.py Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
test-requirements.txt Basic structure imported from tripleo-image-elements 2014-09-08 18:58:08 -04:00
tox.ini Merge "py26 is no longer supported by Infra's CI" 2016-03-15 21:35:08 +00:00

README.md

Puppet building rules for OpenStack images

These elements are used to build disk images for deploying OpenStack via Heat. They are built as part of the TripleO (https://wiki.openstack.org/wiki/TripleO) umbrella project.

Instructions

Checkout this source tree and also the diskimage builder, export an ELEMENTS_PATH to add elements from this tree, and build any disk images you need.

git clone https://git.openstack.org/openstack/diskimage-builder.git
git clone https://git.openstack.org/openstack/tripleo-puppet-elements.git
export ELEMENTS_PATH=tripleo-puppet-elements/elements
diskimage-builder/bin/disk-image-create -u base vm bootstrap local-config stackuser heat-cfntools -a i386 -o bootstrap

Common element combinations

Always include heat-cfntools in images that you intend to boot via heat : if that is not done, then the user ssh keys are not reliably pulled down from the metadata server due to interactions with cloud-init.

Architecture

OpenStack images are intended to be deployed and maintained using Nova + Heat.

As such they should strive to be stateless, maintained entirely via automation.

Configuration

In a running OpenStack there are several categories of config.

  • per user - e.g. ssh key registration with nova: we repeat this sort of config every time we add a user.
  • local node - e.g. nova.conf or ovs-vsctl add-br br-ex : settings that apply individually to machines
  • inter-node - e.g. credentials on rabbitmq for a given nova compute node
  • application state - e.g. 'neutron net-create ...' : settings that apply to the whole cluster not on a per-user / per-tenant basis

We have five places we can do configuration in TripleO:

  • image build time
  • in-instance heat-driven (ORC scripts)
  • in-instance first-boot scripts [deprecated]
  • from outside via APIs
  • orchestrated by Heat

Our current heuristic for deciding where to do any particular configuration step:

  • per user config should be done from the outside via APIs, even for users like 'admin' that we know we'll have. Note that service accounts are different - they are a form of inter-node configuration.
  • local node configuration should be done via ORC driven by Heat and/or configuration management system metadata.
  • inter-node configuration should be done by working through Heat. For instance, creating a rabbit account for a nova compute node is something that Heat should arrange, though the act of creating is probably done by a script on the rabbit server - triggered by Heat - and applying the config is done on the compute node by the local node script - again triggered by Heat.
  • application state changes should be done from outside via APIs
  • first-boot scripts should not be used.

Copyright

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.