ad5cf5d55d
- rax_scaling_group - rax_scaling_policy
298 lines
9.3 KiB
Python
298 lines
9.3 KiB
Python
#!/usr/bin/python
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This is a DOCUMENTATION stub specific to this module, it extends
|
|
# a documentation fragment located in ansible.utils.module_docs_fragments
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: rax_scaling_policy
|
|
short_description: Manipulate Rackspace Cloud Autoscale Scaling Policy
|
|
description:
|
|
- Manipulate Rackspace Cloud Autoscale Scaling Policy
|
|
version_added: 1.7
|
|
options:
|
|
at:
|
|
description:
|
|
- The UTC time when this policy will be executed. The time must be
|
|
formatted according to C(yyyy-MM-dd'T'HH:mm:ss.SSS) such as
|
|
C(2013-05-19T08:07:08Z)
|
|
change:
|
|
description:
|
|
- The change, either as a number of servers or as a percentage, to make
|
|
in the scaling group. If this is a percentage, you must set
|
|
I(is_percent) to C(true) also.
|
|
cron:
|
|
description:
|
|
- The time when the policy will be executed, as a cron entry. For
|
|
example, if this is parameter is set to C(1 0 * * *)
|
|
cooldown:
|
|
description:
|
|
- The period of time, in seconds, that must pass before any scaling can
|
|
occur after the previous scaling. Must be an integer between 0 and
|
|
86400 (24 hrs).
|
|
desired_capacity:
|
|
description:
|
|
- The desired server capacity of the scaling the group; that is, how
|
|
many servers should be in the scaling group.
|
|
is_percent:
|
|
description:
|
|
- Whether the value in I(change) is a percent value
|
|
default: false
|
|
name:
|
|
description:
|
|
- Name to give the policy
|
|
required: true
|
|
policy_type:
|
|
description:
|
|
- The type of policy that will be executed for the current release.
|
|
choices:
|
|
- webhook
|
|
- schedule
|
|
required: true
|
|
scaling_group:
|
|
description:
|
|
- Name of the scaling group that this policy will be added to
|
|
required: true
|
|
state:
|
|
description:
|
|
- Indicate desired state of the resource
|
|
choices:
|
|
- present
|
|
- absent
|
|
default: present
|
|
author: Matt Martz
|
|
extends_documentation_fragment: rackspace
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
---
|
|
- hosts: localhost
|
|
gather_facts: false
|
|
connection: local
|
|
tasks:
|
|
- rax_scaling_policy:
|
|
credentials: ~/.raxpub
|
|
region: ORD
|
|
at: '2013-05-19T08:07:08Z'
|
|
change: 25
|
|
cooldown: 300
|
|
is_percent: true
|
|
name: ASG Test Policy - at
|
|
policy_type: schedule
|
|
scaling_group: ASG Test
|
|
register: asps_at
|
|
|
|
- rax_scaling_policy:
|
|
credentials: ~/.raxpub
|
|
region: ORD
|
|
cron: '1 0 * * *'
|
|
change: 25
|
|
cooldown: 300
|
|
is_percent: true
|
|
name: ASG Test Policy - cron
|
|
policy_type: schedule
|
|
scaling_group: ASG Test
|
|
register: asp_cron
|
|
|
|
- rax_scaling_policy:
|
|
credentials: ~/.raxpub
|
|
region: ORD
|
|
cooldown: 300
|
|
desired_capacity: 5
|
|
name: ASG Test Policy - webhook
|
|
policy_type: webhook
|
|
scaling_group: ASG Test
|
|
register: asp_webhook
|
|
'''
|
|
|
|
from uuid import UUID
|
|
|
|
try:
|
|
import pyrax
|
|
HAS_PYRAX = True
|
|
except ImportError:
|
|
HAS_PYRAX = False
|
|
|
|
NON_CALLABLES = (basestring, bool, dict, int, list, type(None))
|
|
PUBLIC_NET_ID = "00000000-0000-0000-0000-000000000000"
|
|
SERVICE_NET_ID = "11111111-1111-1111-1111-111111111111"
|
|
|
|
|
|
def to_dict(obj):
|
|
instance = {}
|
|
for key in dir(obj):
|
|
value = getattr(obj, key)
|
|
if (isinstance(value, NON_CALLABLES) and not key.startswith('_')):
|
|
instance[key] = value
|
|
return instance
|
|
|
|
|
|
def rax_asp(module, at=None, change=0, cron=None, cooldown=300,
|
|
desired_capacity=0, is_percent=False, name=None,
|
|
policy_type=None, scaling_group=None, state='present'):
|
|
changed = False
|
|
|
|
au = pyrax.autoscale
|
|
if not au:
|
|
module.fail_json(msg='Failed to instantiate client. This '
|
|
'typically indicates an invalid region or an '
|
|
'incorrectly capitalized region name.')
|
|
|
|
try:
|
|
UUID(scaling_group)
|
|
except ValueError:
|
|
try:
|
|
sg = au.find(name=scaling_group)
|
|
except Exception, e:
|
|
module.fail_json(msg='%s' % e.message)
|
|
else:
|
|
try:
|
|
sg = au.get(scaling_group)
|
|
except Exception, e:
|
|
module.fail_json(msg='%s' % e.message)
|
|
|
|
if state == 'present':
|
|
policies = filter(lambda p: name == p.name, sg.list_policies())
|
|
if len(policies) > 1:
|
|
module.fail_json(msg='No unique policy match found by name')
|
|
if at:
|
|
args = dict(at=at)
|
|
elif cron:
|
|
args = dict(cron=cron)
|
|
else:
|
|
args = None
|
|
|
|
if not policies:
|
|
try:
|
|
policy = sg.add_policy(name, policy_type=policy_type,
|
|
cooldown=cooldown, change=change,
|
|
is_percent=is_percent,
|
|
desired_capacity=desired_capacity,
|
|
args=args)
|
|
changed = True
|
|
except Exception, e:
|
|
module.fail_json(msg='%s' % e.message)
|
|
|
|
else:
|
|
policy = policies[0]
|
|
kwargs = {}
|
|
if policy_type != policy.type:
|
|
kwargs['policy_type'] = policy_type
|
|
|
|
if cooldown != policy.cooldown:
|
|
kwargs['cooldown'] = cooldown
|
|
|
|
if hasattr(policy, 'change') and change != policy.change:
|
|
kwargs['change'] = change
|
|
|
|
if hasattr(policy, 'changePercent') and is_percent is False:
|
|
kwargs['change'] = change
|
|
kwargs['is_percent'] = False
|
|
elif hasattr(policy, 'change') and is_percent is True:
|
|
kwargs['change'] = change
|
|
kwargs['is_percent'] = True
|
|
|
|
if hasattr(policy, 'desiredCapacity') and change:
|
|
kwargs['change'] = change
|
|
elif ((hasattr(policy, 'change') or
|
|
hasattr(policy, 'changePercent')) and desired_capacity):
|
|
kwargs['desired_capacity'] = desired_capacity
|
|
|
|
if hasattr(policy, 'args') and args != policy.args:
|
|
kwargs['args'] = args
|
|
|
|
if kwargs:
|
|
policy.update(**kwargs)
|
|
changed = True
|
|
|
|
policy.get()
|
|
|
|
module.exit_json(changed=changed, autoscale_policy=to_dict(policy))
|
|
|
|
else:
|
|
try:
|
|
policies = filter(lambda p: name == p.name, sg.list_policies())
|
|
if len(policies) > 1:
|
|
module.fail_json(msg='No unique policy match found by name')
|
|
elif not policies:
|
|
policy = {}
|
|
else:
|
|
policy.delete()
|
|
changed = True
|
|
except Exception, e:
|
|
module.fail_json(msg='%s' % e.message)
|
|
|
|
module.exit_json(changed=changed, autoscale_policy=to_dict(policy))
|
|
|
|
|
|
def main():
|
|
argument_spec = rax_argument_spec()
|
|
argument_spec.update(
|
|
dict(
|
|
at=dict(),
|
|
change=dict(type='int'),
|
|
cron=dict(),
|
|
cooldown=dict(type='int', default=300),
|
|
desired_capacity=dict(type='int'),
|
|
is_percent=dict(type='bool', default=False),
|
|
name=dict(required=True),
|
|
policy_type=dict(required=True, choices=['webhook', 'schedule']),
|
|
scaling_group=dict(required=True),
|
|
state=dict(default='present', choices=['present', 'absent']),
|
|
)
|
|
)
|
|
|
|
module = AnsibleModule(
|
|
argument_spec=argument_spec,
|
|
required_together=rax_required_together(),
|
|
mutually_exclusive=[
|
|
['cron', 'at'],
|
|
['change', 'desired_capacity'],
|
|
]
|
|
)
|
|
|
|
if not HAS_PYRAX:
|
|
module.fail_json(msg='pyrax is required for this module')
|
|
|
|
at = module.params.get('at')
|
|
change = module.params.get('change')
|
|
cron = module.params.get('cron')
|
|
cooldown = module.params.get('cooldown')
|
|
desired_capacity = module.params.get('desired_capacity')
|
|
is_percent = module.params.get('is_percent')
|
|
name = module.params.get('name')
|
|
policy_type = module.params.get('policy_type')
|
|
scaling_group = module.params.get('scaling_group')
|
|
state = module.params.get('state')
|
|
|
|
if (at or cron) and policy_type == 'webhook':
|
|
module.fail_json(msg='policy_type=schedule is required for a time '
|
|
'based policy')
|
|
|
|
setup_rax_module(module, pyrax)
|
|
|
|
rax_asp(module, at=at, change=change, cron=cron, cooldown=cooldown,
|
|
desired_capacity=desired_capacity, is_percent=is_percent,
|
|
name=name, policy_type=policy_type, scaling_group=scaling_group,
|
|
state=state)
|
|
|
|
|
|
# import module snippets
|
|
from ansible.module_utils.basic import *
|
|
from ansible.module_utils.rax import *
|
|
|
|
# invoke the module
|
|
main()
|