community.general.avi_serverautoscalepolicy (0.1.1) — module

Module for setup of ServerAutoScalePolicy Avi RESTful Object

Authors: Gaurav Rastogi (@grastogi23) <grastogi@avinetworks.com>

preview | supported by community

Install collection

Install with ansible-galaxy collection install community.general:==0.1.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.1

Description

This module is used to configure ServerAutoScalePolicy object

more examples at U(https://github.com/avinetworks/devops)


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Example to create ServerAutoScalePolicy object
  avi_serverautoscalepolicy:
    controller: 10.10.25.42
    username: admin
    password: something
    state: present
    name: sample_serverautoscalepolicy

Inputs

    
url:
    description:
    - Avi controller URL of the object.

name:
    description:
    - Name of the object.
    required: true

uuid:
    description:
    - Unique object identifier of the object.

state:
    choices:
    - absent
    - present
    default: present
    description:
    - The state that should be applied on the entity.

tenant:
    default: admin
    description:
    - Name of tenant used for all Avi API calls and context of object.
    type: str

max_size:
    description:
    - Maximum number of servers after scaleout.
    - Allowed values are 0-400.

min_size:
    description:
    - No scale-in happens once number of operationally up servers reach min_servers.
    - Allowed values are 0-400.

password:
    default: ''
    description:
    - Password of Avi user in Avi controller. The default value is the environment variable
      C(AVI_PASSWORD).
    type: str

username:
    default: ''
    description:
    - Username used for accessing Avi controller. The default value is the environment
      variable C(AVI_USERNAME).
    type: str

controller:
    default: ''
    description:
    - IP address or hostname of the controller. The default value is the environment variable
      C(AVI_CONTROLLER).
    type: str

tenant_ref:
    description:
    - It is a reference to an object of type tenant.

api_context:
    description:
    - Avi API context that includes current session ID and CSRF Token.
    - This allows user to perform single login and re-use the session.
    type: dict

api_version:
    default: 16.4.4
    description:
    - Avi API version of to use for Avi API and objects.
    type: str

description:
    description:
    - User defined description for the object.

tenant_uuid:
    default: ''
    description:
    - UUID of tenant used for all Avi API calls and context of object.
    type: str

avi_credentials:
    description:
    - Avi Credentials dictionary which can be used in lieu of enumerating Avi Controller
      login details.
    suboptions:
      api_version:
        default: 16.4.4
        description:
        - Avi controller version
      controller:
        description:
        - Avi controller IP or SQDN
      csrftoken:
        description:
        - Avi controller API csrftoken to reuse existing session with session id
      password:
        description:
        - Avi controller password
      port:
        description:
        - Avi controller port
      session_id:
        description:
        - Avi controller API session id to reuse existing session with csrftoken
      tenant:
        default: admin
        description:
        - Avi controller tenant
      tenant_uuid:
        description:
        - Avi controller tenant UUID
      timeout:
        default: 300
        description:
        - Avi controller request timeout
      token:
        description:
        - Avi controller API token
      username:
        description:
        - Avi controller username
    type: dict

avi_api_patch_op:
    choices:
    - add
    - replace
    - delete
    description:
    - Patch operation to use when using avi_api_update_method as patch.

scalein_cooldown:
    description:
    - Cooldown period during which no new scalein is triggered to allow previous scalein
      to successfully complete.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 300.

scaleout_cooldown:
    description:
    - Cooldown period during which no new scaleout is triggered to allow previous scaleout
      to successfully complete.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 300.

use_predicted_load:
    description:
    - Use predicted load rather than current load.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as False.
    type: bool

avi_api_update_method:
    choices:
    - put
    - patch
    default: put
    description:
    - Default method for object update is HTTP PUT.
    - Setting to patch will override that behavior to use HTTP PATCH.

intelligent_autoscale:
    description:
    - Use avi intelligent autoscale algorithm where autoscale is performed by comparing
      load on the pool against estimated capacity of all the servers.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as False.
    type: bool

scalein_alertconfig_refs:
    description:
    - Trigger scalein when alerts due to any of these alert configurations are raised.
    - It is a reference to an object of type alertconfig.

scaleout_alertconfig_refs:
    description:
    - Trigger scaleout when alerts due to any of these alert configurations are raised.
    - It is a reference to an object of type alertconfig.

intelligent_scalein_margin:
    description:
    - Maximum extra capacity as percentage of load used by the intelligent scheme.
    - Scalein is triggered when available capacity is more than this margin.
    - Allowed values are 1-99.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 40.

intelligent_scaleout_margin:
    description:
    - Minimum extra capacity as percentage of load used by the intelligent scheme.
    - Scaleout is triggered when available capacity is less than this margin.
    - Allowed values are 1-99.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 20.

max_scalein_adjustment_step:
    description:
    - Maximum number of servers to scalein simultaneously.
    - The actual number of servers to scalein is chosen such that target number of servers
      is always more than or equal to the min_size.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 1.

max_scaleout_adjustment_step:
    description:
    - Maximum number of servers to scaleout simultaneously.
    - The actual number of servers to scaleout is chosen such that target number of servers
      is always less than or equal to the max_size.
    - Default value when not specified in API or module is interpreted by Avi Controller
      as 1.

avi_disable_session_cache_as_fact:
    description:
    - It disables avi session information to be cached as a fact.
    type: bool

Outputs

obj:
  description: ServerAutoScalePolicy (api/serverautoscalepolicy) object
  returned: success, changed
  type: dict