OpenStack Horizon Puppet Module
Go to file
Tobias Urdin 393fbf1636 Remove PE requirement from metadata.json
The PE requirement in metadata.json is not
supported anymore and puppet-lint will throw:

The 'pe' requirement is no longer supported by the Forge.

Change-Id: Id060e909b4020b7ebf4610061231dd037eab7c25
(cherry picked from commit ae106fb88b)
(cherry picked from commit 388290e246)
2020-04-10 16:14:18 +09:00
lib/puppet/parser/functions Vendor any2array function to support stdlib 3.2 2014-05-02 14:28:13 -07:00
manifests Reflect openstacklib options for apache::vhost resources 2020-03-09 11:52:31 +01:00
releasenotes Add manage_memcache_package parameter 2018-09-20 15:26:05 +02:00
spec Add manage_memcache_package parameter 2018-09-20 15:26:05 +02:00
templates Add a new parameter named cache_server_url 2018-06-19 09:02:40 +00:00
.gitignore Adjust fixtures .gitignore 2017-11-14 13:01:57 -07:00
.gitreview OpenDev Migration Patch 2019-04-19 19:34:32 +00:00
.sync.yml Initial msync run for all Puppet OpenStack modules 2015-08-06 20:34:34 +02:00
.zuul.yaml import zuul job settings from project-config 2018-08-31 08:38:28 -04:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:17 -04:00
Gemfile Update Gemfile to pull spec_helper from stable/queens 2018-08-15 10:10:46 -06:00
LICENSE Synchronize LICENSE file with OpenStack projects 2015-04-20 09:26:43 -04:00
README.md Update to the latest address in README 2017-09-21 11:53:01 +08:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-01-18 09:11:20 -05:00
bindep.txt Add Puppet package to bindep, for module build 2017-10-27 13:13:04 -07:00
metadata.json Remove PE requirement from metadata.json 2020-04-10 16:14:18 +09:00
setup.cfg Merge "Update URLs in documents according to document migration" 2017-07-21 20:42:03 +00:00
setup.py Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
test-requirements.txt Remove pinned versions from test-requirements.txt 2018-01-16 12:29:45 +08:00
tox.ini Update UPPER_CONSTRAINTS_FILE for stable/queens 2018-02-20 22:13:42 +00:00

README.md

Team and repository tags

Team and repository tags

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