OpenStack Horizon Puppet Module
Go to file
Tobias Urdin 2ae5f46740 Add ssl_verify_client
This adds the ssl_verify_client parameter that
is passed down to the apache::vhost resource.

Without this being set, as of puppetlabs-apache 2.1.0,
the horizon_ca parameter will be ignored and you won't
get the CA/intermediate set in the vhost configuration. [1]

This was introduced a long long time ago which means we should
backport this or SSL is semi-broken when using this module.

[1] https://github.com/puppetlabs/puppetlabs-apache/blob/2.1.0/CHANGELOG.md#changed

Change-Id: I9f60f266400a6d0ccfad757aa33009929c02cde7
(cherry picked from commit 841d4d734e)
2020-10-14 13:38:23 +00:00
doc Bump the openstackdocstheme extension to 1.20 2019-08-13 11:29:07 +08:00
manifests Add ssl_verify_client 2020-10-14 13:38:23 +00:00
releasenotes Add ssl_verify_client 2020-10-14 13:38:23 +00:00
spec Add ssl_verify_client 2020-10-14 13:38:23 +00:00
templates Merge "Prefix memcached_servers IPv6 address with `inet6:`" 2019-05-28 15:37:09 +00:00
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:24 +08:00
.gitreview Update .gitreview for stable/train 2019-10-04 13:27:10 +00:00
.sync.yml Initial msync run for all Puppet OpenStack modules 2015-08-06 20:34:34 +02:00
.zuul.yaml at least one test needs to run for tempest to pass 2020-06-03 13:12:26 -06:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:17 -04:00
Gemfile Switch to Train 2019-10-10 01:05:55 +02:00
LICENSE Update LICENSE 2018-04-06 20:14:30 +08:00
README.md Fix Repository 2019-04-21 12:59:08 +08: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 Train RC1 2019-09-25 13:45:43 +08: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 TOX/UPPER_CONSTRAINTS_FILE for stable/train 2019-10-04 13:27:15 +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. Beaker-Rspec - Beaker-rspec tests for the project
  7. Development - Guide for contributing to the module
  8. Release Notes - Release notes for the project
  9. Contributors - Those with commits
  10. 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