https://github.com/openstack/puppet-horizon
OpenStack Horizon Puppet Module. Mirror of code maintained at opendev.org.
https://github.com/openstack/puppet-horizon
Last synced: over 1 year ago
JSON representation
OpenStack Horizon Puppet Module. Mirror of code maintained at opendev.org.
- Host: GitHub
- URL: https://github.com/openstack/puppet-horizon
- Owner: openstack
- License: apache-2.0
- Created: 2013-04-04T21:03:57.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-03-31T14:11:26.000Z (over 1 year ago)
- Last Synced: 2025-04-01T06:32:10.407Z (over 1 year ago)
- Language: Ruby
- Homepage: https://opendev.org/openstack/puppet-horizon
- Size: 1.41 MB
- Stars: 47
- Watchers: 12
- Forks: 58
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
Team and repository tags
========================
[](https://governance.openstack.org/tc/reference/tags/index.html)
horizon
=======
#### Table of Contents
1. [Overview - What is the horizon module?](#overview)
2. [Module Description - What does the module do?](#module-description)
3. [Setup - The basics of getting started with horizon](#setup)
4. [Implementation - An under-the-hood peek at what the module is doing](#implementation)
5. [Limitations - OS compatibility, etc.](#limitations)
6. [Development - Guide for contributing to the module](#development)
7. [Release Notes - Release notes for the project](#release-notes)
8. [Contributors - Those with commits](#contributors)
9. [Repository - The project source code repository](#repository)
Overview
--------
The horizon module is a part of [OpenStack](https://opendev.org/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](https://docs.openstack.org/horizon/latest/), 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](http://docs.openstack.org) documentation.
**Define a horizon dashboard**
```puppet
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.
* https://docs.openstack.org/puppet-openstack-guide/latest/
Release Notes
-------------
* https://docs.openstack.org/releasenotes/puppet-horizon
Contributors
------------
* https://github.com/openstack/puppet-horizon/graphs/contributors
Repository
----------
* https://opendev.org/openstack/puppet-horizon