|
1 week ago | |
---|---|---|
doc | 7 months ago | |
manifests | 2 weeks ago | |
releasenotes | 3 weeks ago | |
spec | 2 weeks ago | |
templates | 1 week ago | |
.gitignore | 2 years ago | |
.gitreview | 1 year ago | |
.sync.yml | 5 years ago | |
.zuul.yaml | 2 months ago | |
CHANGELOG.md | 4 years ago | |
CONTRIBUTING.rst | 8 months ago | |
Gemfile | 4 months ago | |
LICENSE | 2 years ago | |
README.md | 4 months ago | |
Rakefile | 5 years ago | |
bindep.txt | 2 years ago | |
metadata.json | 1 month ago | |
setup.cfg | 2 years ago | |
setup.py | 4 years ago | |
tox.ini | 2 months ago |
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.
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.
What the horizon module affects
puppet module install openstack/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',
}
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.
Developer documentation for the entire puppet-openstack project.