OpenStack Horizon Puppet Module
Go to file
Tobias Urdin a0468fd8cb Add access_log_format for WSGI
Adds the access_log_format parameter that can be used to set
the log format that is used in the vhosts that puppetlabs-apache
manages.

Adds the same parameter to the init class to make sure that you
can set it when managing apache from there and not including the
wsgi::apache class manually.

The default value of the parameter is the same as enforced in other
modules that has the access_log_format, which is false. That is the
default that the puppetlabs-apache module has.

Change-Id: Ie8ac84c6231ad55c5974a95b50238f0d006b6336
2018-12-10 14:49:00 +01:00
doc Follow the new PTI for document build 2018-02-28 14:42:11 +08:00
manifests Add access_log_format for WSGI 2018-12-10 14:49:00 +01:00
releasenotes Add access_log_format for WSGI 2018-12-10 14:49:00 +01:00
spec Add access_log_format for WSGI 2018-12-10 14:49:00 +01:00
templates Change default member role to member 2018-11-20 20:39:24 +01:00
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:24 +08: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
.zuul.yaml Add puppet-horizon-tripleo-standalone job 2018-10-15 16:12:30 +05:30
bindep.txt modulesync: sync and add nodepool-bionic for beaker 2018-07-18 16:18:18 +02:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:17 -04:00
Gemfile Load puppet-openstack_spec_helper locally during tests 2018-02-12 10:53:36 +08:00
LICENSE Update LICENSE 2018-04-06 20:14:30 +08:00
metadata.json Prepare Stein M1 2018-11-13 14:53:21 +08:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-01-18 09:11:20 -05:00
README.md Add the missing 'Table of Contents' 2018-08-27 14:29:44 +00:00
setup.cfg Change openstack-dev to openstack-discuss 2018-12-02 18:19:56 +01:00
setup.py Add basic structure for ReNo 2016-03-14 08:29:25 -04:00
tox.ini Update min tox version to 2.0 2018-10-16 11:40:17 +08:00

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. Release Notes - Release notes for the project
  8. Contributors - Those with commits
  9. Repository - The project source code repository

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.

Release Notes

Contributors

Repository