mirror of
https://github.com/ansible/awx.git
synced 2026-03-07 11:41:08 -03:30
WIP: Module for EEs
This commit is contained in:
@@ -28,6 +28,11 @@ options:
|
|||||||
- Job_type to use for the ad hoc command.
|
- Job_type to use for the ad hoc command.
|
||||||
type: str
|
type: str
|
||||||
choices: [ 'run', 'check' ]
|
choices: [ 'run', 'check' ]
|
||||||
|
execution_environment:
|
||||||
|
description:
|
||||||
|
- Execution Environment to use for the ad hoc command.
|
||||||
|
required: False
|
||||||
|
type: str
|
||||||
inventory:
|
inventory:
|
||||||
description:
|
description:
|
||||||
- Inventory to use for the ad hoc command.
|
- Inventory to use for the ad hoc command.
|
||||||
|
|||||||
@@ -0,0 +1,86 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# coding: utf-8 -*-
|
||||||
|
|
||||||
|
# (c) 2020, Shane McDonald <shanemcd@redhat.com>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: tower_execution_environment
|
||||||
|
author: "Shane McDonald"
|
||||||
|
short_description: create, update, or destroy Execution Environments in Ansible Tower.
|
||||||
|
description:
|
||||||
|
- Create, update, or destroy Execution Environments in Ansible Tower. See
|
||||||
|
U(https://www.ansible.com/tower) for an overview.
|
||||||
|
options:
|
||||||
|
image:
|
||||||
|
description:
|
||||||
|
- The fully qualified name of the container image
|
||||||
|
required: True
|
||||||
|
type: str
|
||||||
|
state:
|
||||||
|
description:
|
||||||
|
- Desired state of the resource.
|
||||||
|
choices: ["present", "absent"]
|
||||||
|
default: "present"
|
||||||
|
type: str
|
||||||
|
credential:
|
||||||
|
description:
|
||||||
|
- Name of the credential to use for the job template.
|
||||||
|
- Deprecated, use 'credentials'.
|
||||||
|
type: str
|
||||||
|
description:
|
||||||
|
description:
|
||||||
|
- Description to use for the job template.
|
||||||
|
type: str
|
||||||
|
organization:
|
||||||
|
description:
|
||||||
|
- TODO
|
||||||
|
type: str
|
||||||
|
extends_documentation_fragment: awx.awx.auth
|
||||||
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
EXAMPLES = '''
|
||||||
|
- name: Add EE to Tower
|
||||||
|
tower_execution_environment:
|
||||||
|
image: quay.io/awx/ee
|
||||||
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
from ..module_utils.tower_api import TowerAPIModule
|
||||||
|
import json
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
# Any additional arguments that are not fields of the item can be added here
|
||||||
|
argument_spec = dict(
|
||||||
|
image=dict(required=True),
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create a module for ourselves
|
||||||
|
module = TowerAPIModule(argument_spec=argument_spec)
|
||||||
|
|
||||||
|
# Extract our parameters
|
||||||
|
image = module.params.get('image')
|
||||||
|
state = module.params.get('state')
|
||||||
|
|
||||||
|
existing_item = module.get_one('execution_environments', name_or_id=image)
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
module.delete_if_needed(image)
|
||||||
|
|
||||||
|
module.create_or_update_if_needed(existing_item, image, endpoint='execution_environments', item_type='execution_environment')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
@@ -73,6 +73,10 @@ options:
|
|||||||
description:
|
description:
|
||||||
- Credential to use for the source.
|
- Credential to use for the source.
|
||||||
type: str
|
type: str
|
||||||
|
execution_environment:
|
||||||
|
description:
|
||||||
|
- Execution Environment to use for the source.
|
||||||
|
type: str
|
||||||
overwrite:
|
overwrite:
|
||||||
description:
|
description:
|
||||||
- Delete child groups and hosts not found in source.
|
- Delete child groups and hosts not found in source.
|
||||||
|
|||||||
@@ -60,6 +60,10 @@ options:
|
|||||||
description:
|
description:
|
||||||
- Path to the playbook to use for the job template within the project provided.
|
- Path to the playbook to use for the job template within the project provided.
|
||||||
type: str
|
type: str
|
||||||
|
execution_environment:
|
||||||
|
description:
|
||||||
|
- Execution Environment to use for the JT.
|
||||||
|
type: str
|
||||||
credential:
|
credential:
|
||||||
description:
|
description:
|
||||||
- Name of the credential to use for the job template.
|
- Name of the credential to use for the job template.
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ options:
|
|||||||
- Local absolute file path containing a custom Python virtualenv to use.
|
- Local absolute file path containing a custom Python virtualenv to use.
|
||||||
type: str
|
type: str
|
||||||
default: ''
|
default: ''
|
||||||
|
default_environment:
|
||||||
|
description:
|
||||||
|
- Default Execution Environment to use for the Organization.
|
||||||
|
type: str
|
||||||
max_hosts:
|
max_hosts:
|
||||||
description:
|
description:
|
||||||
- The max hosts allowed in this organizations
|
- The max hosts allowed in this organizations
|
||||||
|
|||||||
@@ -31,6 +31,10 @@ options:
|
|||||||
description:
|
description:
|
||||||
- Description to use for the project.
|
- Description to use for the project.
|
||||||
type: str
|
type: str
|
||||||
|
execution_environment:
|
||||||
|
description:
|
||||||
|
- Execution Environment to use for the project.
|
||||||
|
type: str
|
||||||
scm_type:
|
scm_type:
|
||||||
description:
|
description:
|
||||||
- Type of SCM resource.
|
- Type of SCM resource.
|
||||||
|
|||||||
@@ -40,6 +40,10 @@ options:
|
|||||||
description:
|
description:
|
||||||
- Variables which will be made available to jobs ran inside the workflow.
|
- Variables which will be made available to jobs ran inside the workflow.
|
||||||
type: dict
|
type: dict
|
||||||
|
execution_environment:
|
||||||
|
description:
|
||||||
|
- Execution Environment to use for the WFJT.
|
||||||
|
type: str
|
||||||
organization:
|
organization:
|
||||||
description:
|
description:
|
||||||
- Organization the workflow job template exists in.
|
- Organization the workflow job template exists in.
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ def determine_state(module_id, endpoint, module, parameter, api_option, module_o
|
|||||||
if not api_option and module_option and module_option.get('type', 'str') == 'list':
|
if not api_option and module_option and module_option.get('type', 'str') == 'list':
|
||||||
return "OK, Field appears to be relation"
|
return "OK, Field appears to be relation"
|
||||||
# TODO, at some point try and check the object model to confirm its actually a relation
|
# TODO, at some point try and check the object model to confirm its actually a relation
|
||||||
|
|
||||||
return cause_error('Failed, option mismatch')
|
return cause_error('Failed, option mismatch')
|
||||||
|
|
||||||
# We made it through all of the checks so we are ok
|
# We made it through all of the checks so we are ok
|
||||||
|
|||||||
Reference in New Issue
Block a user