OpenStack Horizon Puppet Module
Go to file
Ben Nemec 68aaff2712 Fix readme typos
A couple of the links in the readme are broken.  This fixes the
ones that I noticed.  Also fixes a typo in the release notes.

Change-Id: I244a187593dff11d554c2c8d86b0a531259a433f
(cherry picked from commit 36f942e8bf)
2013-11-15 23:09:23 +00:00
manifests Fix apache module 0.9.0 compatibility issue 2013-09-17 13:56:06 -07:00
spec Ensure booleans are capitalized in template 2013-07-03 12:30:04 -04:00
templates Ensure booleans are capitalized in template 2013-07-03 12:30:04 -04:00
.fixtures.yml Pin apache to major version for fixtures 2013-07-24 14:35:28 -07:00
.gitignore Puppet Forge release 2.0.0 2013-06-24 21:21:50 -07:00
.gitreview add gitreview 2013-04-10 13:45:04 -07:00
Gemfile Replace deprecated :rubygems source 2013-06-10 15:30:35 -04:00
LICENSE Add modulefile and changelog for initial release 2012-06-12 10:11:08 -07:00
Modulefile Preparing for 2.2.0 release. 2013-10-08 11:46:45 -07:00
README.md Fix readme typos 2013-11-15 23:09:23 +00:00
Rakefile Fail puppet-lint on warnings 2013-08-28 16:49:17 -04:00

README.md

horizon

Table of Contents

  1. Overview - What is the horizon module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with horizon
  4. Implementation - An under-the-hood peek at what the module is doing
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
  7. Contributors - Those with commits
  8. Release Notes - Notes on the most recent updates to the module

Overview

The horizon module is a part of Stackforge, an effort by the Openstack infrastructure team to provide continuous integration testing and code review for Openstack and Openstack community projects not part of the core software. The module its self is used to flexibly configure and manage the dashboard service for Openstack.

Module Description

The horizon module is a thorough attempt to make Puppet capable of managing the entirety of horizon. Horizon is a fairly classic django application, which results in a fairly simply Puppet module.

This module is tested in combination with other modules needed to build and leverage an entire Openstack software stack. These modules can be found, all pulled together in the openstack module.

Setup

What the horizon module affects

  • horizon, the dashboard service for Openstack.

Installing horizon

example% puppet module install puppetlabs/horizon

Beginning with horizon

To utilize the horizon module's functionality you will need to declare multiple resources but you'll find that doing so is much less complicated than the other OpenStack component modules. The following is a modified excerpt from the openstack module. We recommend you consult and understand the openstack module and the core openstack documentation.

Define a horizon dashboard

class { 'memcached':
  listen_ip => '127.0.0.1',
  tcp_port  => '11211',
  udp_port  => '11211',
}

class { '::horizon':
  cache_server_ip       => '127.0.0.1',
  cache_server_port     => '11211',
  secret_key            => '12345',
  swift                 => false,
  quantum               => false,
  django_debug          => 'True',
  api_result_limit      => '2000',
}

Implementation

horizon

Horizon is a simple module using the combination of a package, template, and the file_line type. Most all the configuration lives inside the included local_settings template and the file_line type is for selectively inserting needed lines into configuration files that aren't explicitly managed by the horizon module.

Limitations

  • Only supports Apache using mod_wsgi.

Development

Developer documentation for the entire puppet-openstack project.

Contributors

Release Notes

2.2.0

  • Fixed apache 0.9.0 incompatability.
  • Various lint fixes.

2.1.0

  • Updated local_settings.py.
  • Pinned Apache module version.
  • Varioud lint fixes.

2.0.0

  • Upstream is now part of stackforge.
  • httpd config now managed on every platform.
  • Provides option to enable Horizon's display of block device mount points.