OpenStack Horizon Puppet Module
Go to file
Takashi Kajinami 29a0d8718d Prepare final stable/zed release
Change-Id: I19efc16f19aef73deae99d870da2b5f291594a10
2024-05-07 16:10:56 +09:00
doc Update openstackdocstheme to the latest version 2021-09-29 16:06:50 +08:00
manifests Add per module policy service refresh 2023-07-21 22:08:28 +00:00
releasenotes Ensure pymemcache library is installed 2022-08-31 10:53:13 +09:00
spec Add per module policy service refresh 2023-07-21 22:08:28 +00:00
templates Fix missing comma causing syntax error 2023-04-14 01:52:42 +00:00
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:24 +08:00
.gitreview Update .gitreview for stable/zed 2022-10-20 11:05:10 +00:00
.pdkignore Add .pdkignore to exclude some files from tar ball 2023-08-15 08:52:51 +00:00
.sync.yml Initial msync run for all Puppet OpenStack modules 2015-08-06 20:34:34 +02:00
.zuul.yaml Zed-only: Remove TripleO job 2023-05-19 13:44:12 +09:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:17 -04:00
CONTRIBUTING.rst [ussuri][goal] Add CONTRIBUTING.rst 2020-05-10 22:39:06 +02:00
Gemfile Use openstack_spec_helper from zuul checkout 2020-08-30 22:57:25 +02:00
LICENSE Update LICENSE 2018-04-06 20:14:30 +08:00
README.md Add Puppet Litmus 2020-08-31 21:25:18 +02:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-01-18 09:11:20 -05:00
bindep.txt modulesync: sync and add nodepool-bionic for beaker 2018-07-18 16:18:18 +02:00
metadata.json Prepare final stable/zed release 2024-05-07 16:10:56 +09:00
setup.cfg Add information technology in the setup.cfg 2021-10-01 06:54:49 +08:00
setup.py setuptools: Disable auto discovery 2022-03-29 10:38:58 +02:00
tox.ini Update TOX_CONSTRAINTS_FILE for stable/zed 2022-10-20 11:05:12 +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. 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.

Development

Developer documentation for the entire puppet-openstack project.

Release Notes

Contributors

Repository