puppetboard/default_settings.py: Reverting PUPPETDB_HOST change from #187 (#260)

This change is only useful for Docker image building, but for officially
supported packages in PIP this change will cause unnecessary breakage to
existing users. We will have to implement a different approach for configuring
settings in Docker images.

Adding a note to README.rst indicating that an officially supported Docker
image is planned.
This commit is contained in:
Corey Hammerton
2016-06-23 21:00:34 -04:00
committed by GitHub
parent dfaf6daec1
commit 831c8bfaae
2 changed files with 8 additions and 1 deletions

View File

@@ -114,6 +114,13 @@ Native packages for your operating system will be provided in the near future.
.. _OpenSuSE 12/13: https://build.opensuse.org/package/show/systemsmanagement:puppet/python-puppetboard .. _OpenSuSE 12/13: https://build.opensuse.org/package/show/systemsmanagement:puppet/python-puppetboard
.. _SuSE LE 11 SP3: https://build.opensuse.org/package/show/systemsmanagement:puppet/python-puppetboard .. _SuSE LE 11 SP3: https://build.opensuse.org/package/show/systemsmanagement:puppet/python-puppetboard
Docker Images
^^^^^^^^^^^^^
A `Dockerfile`_ was added to the source-code in the 0.2.0 release. An officially
image is planned for the 0.2.x series.
.. _Dockerfile: https://github.com/voxpupuli/puppetboard/blob/master/Dockerfile
Development Development
----------- -----------

View File

@@ -1,6 +1,6 @@
import os import os
PUPPETDB_HOST = 'puppetdb' PUPPETDB_HOST = 'localhost'
PUPPETDB_PORT = 8080 PUPPETDB_PORT = 8080
PUPPETDB_SSL_VERIFY = True PUPPETDB_SSL_VERIFY = True
PUPPETDB_KEY = None PUPPETDB_KEY = None