bootstrap a keystone user (e.g. admin) in one cmd
Change-Id: I67ec8cad0f1893113f8041d8bffb9a078a8b9bbe
This commit is contained in:
0
keystoneclient/contrib/__init__.py
Normal file
0
keystoneclient/contrib/__init__.py
Normal file
0
keystoneclient/contrib/bootstrap/__init__.py
Normal file
0
keystoneclient/contrib/bootstrap/__init__.py
Normal file
28
keystoneclient/contrib/bootstrap/shell.py
Normal file
28
keystoneclient/contrib/bootstrap/shell.py
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
from keystoneclient import utils
|
||||||
|
from keystoneclient.v2_0 import client
|
||||||
|
|
||||||
|
|
||||||
|
@utils.arg('--user-name', metavar='<user-name>', default='admin', dest='user',
|
||||||
|
help='The name of the user to be created (default="admin").')
|
||||||
|
@utils.arg('--pass', metavar='<password>', required=True, dest='passwd',
|
||||||
|
help='The password for the new user.')
|
||||||
|
@utils.arg('--role-name', metavar='<role-name>', default='admin', dest='role',
|
||||||
|
help='The name of the role to be created and granted to the user '
|
||||||
|
'(default="admin").')
|
||||||
|
@utils.arg('--tenant-name', metavar='<tenant-name>', default='admin',
|
||||||
|
dest='tenant',
|
||||||
|
help='The name of the tenant to be created (default="admin").')
|
||||||
|
def do_bootstrap(kc, args):
|
||||||
|
"""Grants a new role to a new user on a new tenant, after creating each."""
|
||||||
|
tenant = kc.tenants.create(tenant_name=args.tenant)
|
||||||
|
role = kc.roles.create(name=args.role)
|
||||||
|
user = kc.users.create(name=args.user, password=args.passwd, email=None)
|
||||||
|
kc.roles.add_user_role(user=user, role=role, tenant=tenant)
|
||||||
|
|
||||||
|
# verify the result
|
||||||
|
user_client = client.Client(
|
||||||
|
username=args.user,
|
||||||
|
password=args.passwd,
|
||||||
|
tenant_name=args.tenant,
|
||||||
|
auth_url=kc.management_url)
|
||||||
|
user_client.authenticate()
|
||||||
@@ -28,6 +28,7 @@ from keystoneclient import exceptions as exc
|
|||||||
from keystoneclient import utils
|
from keystoneclient import utils
|
||||||
from keystoneclient.v2_0 import shell as shell_v2_0
|
from keystoneclient.v2_0 import shell as shell_v2_0
|
||||||
from keystoneclient.generic import shell as shell_generic
|
from keystoneclient.generic import shell as shell_generic
|
||||||
|
from keystoneclient.contrib.bootstrap import shell as shell_bootstrap
|
||||||
|
|
||||||
|
|
||||||
def env(*vars, **kwargs):
|
def env(*vars, **kwargs):
|
||||||
@@ -190,6 +191,7 @@ class OpenStackIdentityShell(object):
|
|||||||
|
|
||||||
self._find_actions(subparsers, actions_module)
|
self._find_actions(subparsers, actions_module)
|
||||||
self._find_actions(subparsers, shell_generic)
|
self._find_actions(subparsers, shell_generic)
|
||||||
|
self._find_actions(subparsers, shell_bootstrap)
|
||||||
self._find_actions(subparsers, self)
|
self._find_actions(subparsers, self)
|
||||||
self._add_bash_completion_subparser(subparsers)
|
self._add_bash_completion_subparser(subparsers)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user