blob: a923608e335f798362b3d8165e46ad08b87ea1f3 [file] [log] [blame]
Tony Mack336e0f92014-11-30 15:53:08 -05001import os
2import base64
3from django.db.models import F, Q
4from planetstack.config import Config
5from observer.openstacksyncstep import OpenStackSyncStep
6from core.models.site import *
7from observer.ansible import *
8
Tony Mack528d4222014-12-05 17:13:08 -05009class SyncControllerSiteDeployments(OpenStackSyncStep):
Tony Mack336e0f92014-11-30 15:53:08 -050010 requested_interval=0
Tony Mack7f542c62015-01-03 17:26:06 -050011 provides=[SiteDeployments]
Tony Mack336e0f92014-11-30 15:53:08 -050012
Tony Mack7f542c62015-01-03 17:26:06 -050013 def sync_record(self, site_deployment):
Tony Mack336e0f92014-11-30 15:53:08 -050014
15 template = os_template_env.get_template('sync_controller_site_deployments.yaml')
Tony Mack7f542c62015-01-03 17:26:06 -050016 tenant_fields = {'endpoint':site_deployment.controller.auth_url,
17 'admin_user': site_deployment.controller.admin_user,
18 'admin_password': site_deployment.controller.admin_password,
19 'admin_tenant': site_deployment.controller.admin_tenant,
20 'ansible_tag': '%s@%s'%(site_deployment.site.login_base,site_deployment.site_deployment.deployment.name), # name of ansible playbook
21 'tenant': site_deployment.site.login_base,
22 'tenant_description': site_deployment.site.name}
Tony Mack336e0f92014-11-30 15:53:08 -050023
24 rendered = template.render(tenant_fields)
Tony Mack7f542c62015-01-03 17:26:06 -050025 res = run_template('sync_controller_site_deployments.yaml', tenant_fields, path='controller_site_deployments')
Tony Mack336e0f92014-11-30 15:53:08 -050026
27 if (len(res)==1):
Tony Mack7f542c62015-01-03 17:26:06 -050028 site_deployment.tenant_id = res[0]['id']
29 site_deployment.save()
Tony Mack336e0f92014-11-30 15:53:08 -050030 elif (len(res)):
31 raise Exception('Could not assign roles for user %s'%tenant_fields['tenant'])
32 else:
33 raise Exception('Could not create or update user %s'%tenant_fields['tenant'])
34
Tony Mack7f542c62015-01-03 17:26:06 -050035 def delete_record(self, site_deployment):
36 if site_deployment.tenant_id:
37 driver = self.driver.admin_driver(controller=site_deployment.controller)
38 driver.delete_tenant(site_deployment.tenant_id)
Sapan Bhatiaf2378a82014-12-21 02:33:52 -050039
40 """
41 Ansible does not support tenant deletion yet
42
43 import pdb
44 pdb.set_trace()
Tony Mack7f542c62015-01-03 17:26:06 -050045 template = os_template_env.get_template('delete_site_deployments.yaml')
46 tenant_fields = {'endpoint':site_deployment.controller.auth_url,
47 'admin_user': site_deployment.controller.admin_user,
48 'admin_password': site_deployment.controller.admin_password,
Sapan Bhatiaf2378a82014-12-21 02:33:52 -050049 'admin_tenant': 'admin',
Tony Mack7f542c62015-01-03 17:26:06 -050050 'ansible_tag': 'site_deployments/%s@%s'%(site_deployment.site_deployment.site.login_base,site_deployment.site_deployment.deployment.name), # name of ansible playbook
51 'tenant': site_deployment.site_deployment.site.login_base,
Sapan Bhatiaf2378a82014-12-21 02:33:52 -050052 'delete': True}
53
54 rendered = template.render(tenant_fields)
Tony Mack7f542c62015-01-03 17:26:06 -050055 res = run_template('sync_site_deployments.yaml', tenant_fields)
Sapan Bhatiaf2378a82014-12-21 02:33:52 -050056
57 if (len(res)!=1):
58 raise Exception('Could not assign roles for user %s'%tenant_fields['tenant'])
59 """