OpenStack Horizon Puppet Module
Go to file
Sergii Golovatiuk 8de1b6100b Make redirect type configurable
This change exposes a redirect type configuration variable so that a
user can specify if they want to use 'temp' or 'permanent' redirects.

This change allows a user to switch to use a 'temp' redirect type
because Mozilla Firefox and Google Chrome cache the responses of '301
Moved Permanently'. Some users have multi tenant environments that have
different URLs for Horizon dashboards (Ubuntu - /horizon, CentOS -
dashboard). '302 Found' is not cacheable response which solves the issue
for multitenant users.

Change-Id: I81694d0ddeebafec7824f5b275d5fb504cd302b1
Closes-Bug: 1385133
Co-Authored-By: Alex Schultz <aschultz@mirantis.com>
2015-08-12 09:01:56 -05:00
lib/puppet/parser/functions Vendor any2array function to support stdlib 3.2 2014-05-02 14:28:13 -07:00
manifests Make redirect type configurable 2015-08-12 09:01:56 -05:00
spec Make redirect type configurable 2015-08-12 09:01:56 -05:00
templates add CUSTOM_THEME_PATH variable 2015-08-06 09:43:49 +03:00
.fixtures.yml Pin puppetlabs-concat to 1.2.1 in fixtures 2015-04-15 15:35:24 -07:00
.gitignore Update gitignore file 2013-12-23 19:05:17 +01:00
.gitreview Update .gitreview file for project rename 2015-06-12 23:12:30 +00:00
CHANGELOG.md Prepare 6.0.0 release 2015-07-09 12:31:15 -04:00
Gemfile Use beaker-puppet_install_helper to install puppet 2015-06-30 16:53:57 -04:00
LICENSE Synchronize LICENSE file with OpenStack projects 2015-04-20 09:26:43 -04:00
README.md Merge "fix module install reference" 2015-07-14 20:19:31 +00:00
Rakefile Add Puppet 4.x lint checks 2015-03-17 15:52:16 +01:00
metadata.json Prepare 6.0.0 release 2015-07-09 12:31:15 -04:00

README.md

horizon

6.0.0 - 2015.1 - Kilo

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

Overview

The horizon module is a part of OpenStack, an effort by the Openstack infrastructure team to provide continuous integration testing and code review for Openstack and Openstack community projects as 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 openstack/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,
  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.

Beaker-Rspec

This module has beaker-rspec tests

To run:

shell bundle install bundle exec rspec spec/acceptance

Development

Developer documentation for the entire puppet-openstack project.

Contributors