OpenStack Horizon Puppet Module
Go to file
Carlos Camacho 17a905fcdc Fix puppet-lint before upgrading gem
Removing puppet-lint warnings
in favor of upgrading to latest gem

2016-09-13 21:10:43.364404 | manifests/init.pp:394:WARNING: line has more than 140 characters
2016-09-13 21:10:43.364482 | manifests/params.pp:47:WARNING: line has more than 140 characters

Change-Id: I8a5fd0a5a61752dbaeb9ed7cd47dadf8e7754d71
2016-09-14 14:02:45 +02:00
lib/puppet/parser/functions Vendor any2array function to support stdlib 3.2 2014-05-02 14:28:13 -07:00
manifests Fix puppet-lint before upgrading gem 2016-09-14 14:02:45 +02:00
releasenotes Prepare 9.2.0 (newton b3) 2016-08-26 09:54:42 -04:00
spec Avoid causing redirect loop 2016-09-02 14:25:27 -06:00
templates Add images_panel parameter default to HORIZON_CONFIG 2016-08-09 12:39:49 -04:00
.gitignore Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
.gitreview Update .gitreview file for project rename 2015-06-12 23:12:30 +00:00
.sync.yml Initial msync run for all Puppet OpenStack modules 2015-08-06 20:34:34 +02:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:17 -04:00
Gemfile Gemfile: rely on puppet-openstack_spec_helper for dependencies 2016-03-29 21:36:23 -04:00
LICENSE Synchronize LICENSE file with OpenStack projects 2015-04-20 09:26:43 -04:00
README.md Merge "Change wiki to docs" 2016-06-03 14:18:35 +00:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-01-18 09:11:20 -05:00
bindep.txt Move other-requirements.txt to bindep.txt 2016-08-12 21:07:16 +02:00
metadata.json Prepare 9.2.0 (newton b3) 2016-08-26 09:54:42 -04:00
setup.cfg Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
setup.py Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
test-requirements.txt Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
tox.ini Add basic structure for ReNo 2016-03-14 08:29:25 -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

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.

Setup

What the horizon module affects

  • Horizon, the dashboard service for OpenStack.

Installing horizon

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. We recommend you consult and understand 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',
  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:

bundle install
bundle exec rspec spec/acceptance

Development

Developer documentation for the entire puppet-openstack project.

Contributors