From 831c8bfaae5207fe6aad3a8327f7acf399328f87 Mon Sep 17 00:00:00 2001 From: Corey Hammerton Date: Thu, 23 Jun 2016 21:00:34 -0400 Subject: [PATCH] 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. --- README.rst | 7 +++++++ puppetboard/default_settings.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 08ea130..5666ea7 100644 --- a/README.rst +++ b/README.rst @@ -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 .. _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 ----------- diff --git a/puppetboard/default_settings.py b/puppetboard/default_settings.py index d5f3bc9..595e690 100644 --- a/puppetboard/default_settings.py +++ b/puppetboard/default_settings.py @@ -1,6 +1,6 @@ import os -PUPPETDB_HOST = 'puppetdb' +PUPPETDB_HOST = 'localhost' PUPPETDB_PORT = 8080 PUPPETDB_SSL_VERIFY = True PUPPETDB_KEY = None