|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import click
|
|
|
|
|
import json
|
|
|
|
|
import requests
|
|
|
|
|
import sys
|
|
|
|
|
import time
|
|
|
|
@ -48,9 +49,12 @@ def deploy():
|
|
|
|
|
glance_db = resource.create('glance_db', 'resources/mariadb_db/', {'db_name': 'glance_db', 'login_password': '', 'login_user': 'root', 'login_port': '', 'ip': '', 'ssh_user': '', 'ssh_key': ''})
|
|
|
|
|
glance_db_user = resource.create('glance_db_user', 'resources/mariadb_user/', {'new_user_name': 'glance', 'new_user_password': 'glance', 'db_name': '', 'login_password': '', 'login_user': 'root', 'login_port': '', 'ip': '', 'ssh_user': '', 'ssh_key': ''})
|
|
|
|
|
|
|
|
|
|
glance_keystone_user = resource.create('glance_keystone_user', 'resources/keystone_user', {'user_name': 'glance_admin', 'user_password': 'password1234', 'tenant_name': 'service_admins', 'role_name': 'glance_admin', 'keystone_host': '', 'keystone_admin_port': '', 'login_user': '', 'login_token': '', 'ip': '', 'ssh_key': '', 'ssh_user': ''})
|
|
|
|
|
services_tenant = resource.create('glance_keystone_tenant', 'resources/keystone_tenant', {'keystone_host': '', 'keystone_port': '', 'login_user': 'admin', 'admin_token': '', 'tenant_name': 'services', 'ip': '', 'ssh_user': '', 'ssh_key': ''})
|
|
|
|
|
|
|
|
|
|
glance_config = resource.create('glance_config', 'resources/glance_config/', {'ip': '', 'ssh_key': '', 'ssh_user': '', 'keystone_ip': '', 'keystone_port': '', 'config_dir': {}, 'api_port': '', 'registry_port': '', 'mysql_ip': '', 'mysql_db': '', 'mysql_user': '', 'mysql_password': '', 'keystone_admin_user': '', 'keystone_admin_password': '', 'keystone_admin_tenant': ''})
|
|
|
|
|
glance_keystone_user = resource.create('glance_keystone_user', 'resources/keystone_user', {'user_name': 'glance_admin', 'user_password': 'password1234', 'tenant_name': 'service_admins', 'role_name': 'glance_admin', 'keystone_host': '', 'keystone_port': '', 'admin_token': '', 'ip': '', 'ssh_key': '', 'ssh_user': ''})
|
|
|
|
|
glance_keystone_role = resource.create('glance_keystone_role', 'resources/keystone_role', {'keystone_host': '', 'keystone_port': '', 'login_user': 'admin', 'admin_token': '', 'tenant_name': '', 'user_name': '', 'role_name': 'admin', 'ip': '', 'ssh_user': '', 'ssh_key': ''})
|
|
|
|
|
|
|
|
|
|
glance_config = resource.create('glance_config', 'resources/glance_config/', {'ip': '', 'ssh_key': '', 'ssh_user': '', 'keystone_ip': '', 'keystone_port': '', 'config_dir': {}, 'api_port': '', 'registry_port': '', 'mysql_ip': '', 'mysql_db': '', 'mysql_user': '', 'mysql_password': '', 'keystone_admin_user': '', 'keystone_admin_password': '', 'keystone_admin_port': '', 'keystone_admin_tenant': ''})
|
|
|
|
|
glance_api_container = resource.create('glance_api_container', 'resources/glance_api_service/', {'image': 'cgenie/centos-rdo-glance-api', 'ports': [{'value': [{'value': 9292}]}], 'host_binds': [], 'volume_binds': [], 'db_password': '', 'keystone_password': '', 'keystone_admin_token': '', 'keystone_host': '', 'ip': '', 'ssh_key': '', 'ssh_user': ''})
|
|
|
|
|
glance_registry_container = resource.create('glance_registry_container', 'resources/glance_registry_service/', {'image': 'cgenie/centos-rdo-glance-registry', 'ports': [{'value': [{'value': 9191}]}], 'host_binds': [], 'volume_binds': [], 'db_host': '', 'db_root_password': '', 'db_password': '', 'db_name': '', 'db_user': '', 'keystone_admin_tenant': '', 'keystone_password': '', 'keystone_user': '', 'keystone_admin_token': '', 'keystone_host': '', 'ip': '', 'ssh_key': '', 'ssh_user': ''})
|
|
|
|
|
|
|
|
|
@ -122,11 +126,14 @@ def deploy():
|
|
|
|
|
signals.connect(glance_db, glance_db_user, {'db_name': 'db_name'})
|
|
|
|
|
|
|
|
|
|
# glance keystone user
|
|
|
|
|
signals.connect(haproxy_keystone_config, glance_keystone_user, {'listen_port': 'keystone_admin_port'})
|
|
|
|
|
signals.connect(haproxy_service, glance_keystone_user) # standard ip, ssh_key, ssh_user
|
|
|
|
|
signals.connect(haproxy_service, glance_keystone_user, {'ip': 'keystone_host'})
|
|
|
|
|
signals.connect(keystone_config1, glance_keystone_user, {'admin_token': 'login_token'})
|
|
|
|
|
signals.connect(keystone_config1, services_tenant)
|
|
|
|
|
signals.connect(keystone_service1, services_tenant, {'admin_port': 'keystone_port', 'ip': 'keystone_host'})
|
|
|
|
|
signals.connect(services_tenant, glance_keystone_user) # standard ip, ssh_key, ssh_user
|
|
|
|
|
signals.connect(glance_keystone_user, glance_keystone_role)
|
|
|
|
|
signals.connect(keystone_service1, glance_keystone_user, {'admin_port': 'keystone_port', 'ip': 'keystone_host'})
|
|
|
|
|
signals.connect(keystone_config1, glance_keystone_user, {'admin_token': 'admin_token'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_config, {'user_name': 'keystone_admin_user', 'user_password': 'keystone_admin_password', 'tenant_name': 'keystone_admin_tenant'})
|
|
|
|
|
signals.connect(keystone_service2, glance_config, {'admin_port': 'keystone_admin_port'})
|
|
|
|
|
|
|
|
|
|
# glance
|
|
|
|
|
signals.connect(node2, glance_config)
|
|
|
|
@ -140,7 +147,7 @@ def deploy():
|
|
|
|
|
|
|
|
|
|
signals.connect(glance_db_user, glance_api_container, {'new_user_password': 'db_password'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_api_container, {'user_password': 'keystone_password'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_api_container, {'login_token': 'keystone_admin_token'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_api_container, {'admin_token': 'keystone_admin_token'})
|
|
|
|
|
signals.connect(haproxy_config, glance_api_container, {'ip': 'keystone_host'})
|
|
|
|
|
|
|
|
|
|
signals.connect(node2, glance_registry_container)
|
|
|
|
@ -150,12 +157,13 @@ def deploy():
|
|
|
|
|
signals.connect(glance_db, glance_registry_container, {'db_name': 'db_name', 'login_password': 'db_root_password'})
|
|
|
|
|
signals.connect(glance_db_user, glance_registry_container, {'new_user_name': 'db_user', 'new_user_password': 'db_password'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_registry_container, {'tenant_name': 'keystone_admin_tenant', 'user_name': 'keystone_user', 'user_password': 'keystone_password'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_registry_container, {'login_token': 'keystone_admin_token'})
|
|
|
|
|
signals.connect(glance_keystone_user, glance_registry_container, {'admin_token': 'keystone_admin_token'})
|
|
|
|
|
signals.connect(haproxy_config, glance_registry_container, {'ip': 'keystone_host'})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
has_errors = False
|
|
|
|
|
for r in resource.Resource.__subclasses__():
|
|
|
|
|
print 'Validating {}'.format(r.name)
|
|
|
|
|
errors = validation.validate_resource(r)
|
|
|
|
|
if errors:
|
|
|
|
|
has_errors = True
|
|
|
|
@ -186,11 +194,14 @@ def deploy():
|
|
|
|
|
actions.resource_action(admin_role, 'run')
|
|
|
|
|
actions.resource_action(keystone_service_endpoint, 'run')
|
|
|
|
|
|
|
|
|
|
actions.resource_action(services_tenant, 'run')
|
|
|
|
|
actions.resource_action(glance_keystone_user, 'run')
|
|
|
|
|
actions.resource_action(glance_keystone_role, 'run')
|
|
|
|
|
actions.resource_action(glance_db, 'run')
|
|
|
|
|
actions.resource_action(glance_db_user, 'run')
|
|
|
|
|
actions.resource_action(glance_config, 'run')
|
|
|
|
|
actions.resource_action(glance_api_container, 'run')
|
|
|
|
|
time.sleep(10) #TODO fix
|
|
|
|
|
actions.resource_action(glance_registry_container, 'run')
|
|
|
|
|
time.sleep(10)
|
|
|
|
|
|
|
|
|
@ -199,9 +210,9 @@ def deploy():
|
|
|
|
|
requests.get('http://%s:%s' % (keystone_service2.args['ip'].value, keystone_service2.args['port'].value))
|
|
|
|
|
requests.get('http://%s:%s' % (haproxy_service.args['ip'].value, haproxy_service.args['ports'].value[0]['value'][0]['value']))
|
|
|
|
|
|
|
|
|
|
requests.post(
|
|
|
|
|
token_data = requests.post(
|
|
|
|
|
'http://%s:%s/v2.0/tokens' % (haproxy_service.args['ip'].value, haproxy_keystone_config.args['listen_port'].value),
|
|
|
|
|
{
|
|
|
|
|
json.dumps({
|
|
|
|
|
'auth': {
|
|
|
|
|
'tenantName': glance_keystone_user.args['tenant_name'],
|
|
|
|
|
'passwordCredentials': {
|
|
|
|
@ -209,13 +220,20 @@ def deploy():
|
|
|
|
|
'password': glance_keystone_user.args['user_password'],
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
headers={'Content-Type': 'application/json'}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
token = token_data.json()['access']['token']['id']
|
|
|
|
|
print 'TOKEN: {}'.format(token)
|
|
|
|
|
|
|
|
|
|
requests.get('http://%s:%s' % (rabbitmq_service1.args['ip'].value, rabbitmq_service1.args['management_port'].value))
|
|
|
|
|
|
|
|
|
|
requests.get('http://%s:%s' % (glance_api_container.args['ip'].value, glance_api_container.args['ports'].value[0]['value'][0]['value']))
|
|
|
|
|
requests.get('http://%s:%s' % (glance_registry_container.args['ip'].value, glance_registry_container.args['ports'].value[0]['value'][0]['value']))
|
|
|
|
|
requests.get(
|
|
|
|
|
'http://%s:%s' % (glance_registry_container.args['ip'].value, glance_registry_container.args['ports'].value[0]['value'][0]['value']),
|
|
|
|
|
headers={'X-Auth-Token': token}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@click.command()
|
|
|
|
@ -225,11 +243,14 @@ def undeploy():
|
|
|
|
|
resources = map(resource.wrap_resource, db.get_list('resource'))
|
|
|
|
|
resources = {r.name: r for r in resources}
|
|
|
|
|
|
|
|
|
|
actions.resource_action(resources['glance_registry_container'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_api_container'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_registry_container'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_config'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_db_user'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_db'], 'remove')
|
|
|
|
|
actions.resource_action(resources['glance_keystone_role'], 'run')
|
|
|
|
|
actions.resource_action(resources['glance_keystone_user'], 'run')
|
|
|
|
|
actions.resource_action(resources['glance_keystone_tenant'], 'run')
|
|
|
|
|
|
|
|
|
|
actions.resource_action(resources['keystone_service_endpoint'], 'remove')
|
|
|
|
|
actions.resource_action(resources['admin_role'], 'remove')
|
|
|
|
|