From 92d9ac9368b91d09a38f0cb42962ebab47e0684f Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Tue, 7 Jun 2016 18:16:28 -0400 Subject: [PATCH] Fix Keystone integration documentation The README file refers to an invalid *_address parameters when *_url parameters should be used. The example in the manifest does not show a password listed (which is required). Change-Id: I03eb31f0c660afca1688e6fc7a992cfb70317706 --- README.md | 12 ++++++------ manifests/keystone/auth.pp | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f962d77d..040f649b 100644 --- a/README.md +++ b/README.md @@ -79,12 +79,12 @@ class { 'glance::db::mysql': ```puppet class { 'glance::keystone::auth': - password => '12345' - email => 'glance@example.com', - public_address => '172.17.0.3', - admin_address => '172.17.0.3', - internal_address => '172.17.1.3', - region => 'example-west-1', + password => '12345' + email => 'glance@example.com', + public_url => 'http://172.17.0.3:9292', + admin_url => 'http://172.17.0.3:9292', + internal_url => 'http://172.17.1.3:9292', + region => 'example-west-1', } ``` diff --git a/manifests/keystone/auth.pp b/manifests/keystone/auth.pp index 9c9f66d4..6f37f940 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -54,6 +54,7 @@ # === Examples # # class { 'glance::keystone::auth': +# password => '123456', # public_url => 'https://10.0.0.10:9292', # internal_url => 'https://10.0.0.11:9292', # admin_url => 'https://10.0.0.11:9292',