Generate keystone credentials for nailgun and ostf

* added keystone usernames for nailgun and ostf
* added generated keystone password for nailgun and ostf users

Implements: blueprint access-control-master-node-improvments
Change-Id: Iffbf4e5552b0c3db052ca42fe55832a865bcc7d5
This commit is contained in:
Sebastian Kalinowski 2014-10-01 13:07:45 +02:00
parent fb18068382
commit ed900db599
2 changed files with 20 additions and 0 deletions

View File

@ -385,6 +385,10 @@ def save_only(iface):
"cobbler/user": "cobbler",
"cobbler/password": pwgen.password(),
"keystone/admin_token": pwgen.password(),
"keystone/ostf_user": "ostf",
"keystone/ostf_password": pwgen.password(),
"keystone/nailgun_user": "nailgun",
"keystone/nailgun_password": pwgen.password(),
"mcollective/user": "mcollective",
"mcollective/password": pwgen.password(),
"postgres/keystone_dbname": "keystone",

View File

@ -54,6 +54,22 @@ class servicepws(urwid.WidgetWrap):
"keystone/admin_token": {"label": "Keystone Admin Token",
"tooltip": "",
"value": pwgen.password()},
"keystone/nailgun_user": {
"label": "Keystone username for Nailgun",
"tooltip": "",
"value": "nailgun"},
"keystone/nailgun_password": {
"label": "Keystone password for Nailgun",
"tooltip": "",
"value": pwgen.password()},
"keystone/ostf_user": {
"label": "Keystone username for OSTF",
"tooltip": "",
"value": "ostf"},
"keystone/ostf_password": {
"label": "Keystone password for OSTF",
"tooltip": "",
"value": pwgen.password()},
"mcollective/user": {"label": "Mcollective user",
"tooltip": "",
"value": "mcollective"},