summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@redhat.com>2018-05-29 07:52:52 -0500
committerDavid Shrewsbury <Shrews@users.noreply.github.com>2018-05-29 08:52:51 -0400
commit828d878bf9690f27612c33fd305e9507568b8b74 (patch)
tree6cfe2908b97219018d602b844673e72d6ebba44e
parentb97a47ac2cfa13d16d39dbc34c8a387328c8b229 (diff)
downloadansible-828d878bf9690f27612c33fd305e9507568b8b74.tar.gz
Bump python support version for openstack modules (#40751)
The openstack modules do not support python 2.6 as the underlying library dependency (openstacksdk) does not support python 2.6. Update the docs to make this clear.
-rw-r--r--lib/ansible/modules/cloud/openstack/os_auth.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_flavor_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_group.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_image_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_keystone_domain.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_keystone_domain_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_keystone_role.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_keystone_service.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_networks_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_nova_host_aggregate.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_port_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_project.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_project_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_quota.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_recordset.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_server.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_server_action.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_server_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_server_group.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_server_volume.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_stack.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_subnet.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_subnets_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_user.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_user_facts.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_user_group.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_user_role.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_volume.py2
-rw-r--r--lib/ansible/modules/cloud/openstack/os_zone.py2
29 files changed, 29 insertions, 29 deletions
diff --git a/lib/ansible/modules/cloud/openstack/os_auth.py b/lib/ansible/modules/cloud/openstack/os_auth.py
index 3d9f4b6524..f1e7cd0fa6 100644
--- a/lib/ansible/modules/cloud/openstack/os_auth.py
+++ b/lib/ansible/modules/cloud/openstack/os_auth.py
@@ -21,7 +21,7 @@ author: "Monty Taylor (@emonty)"
description:
- Retrieve an auth token from an OpenStack Cloud
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
availability_zone:
diff --git a/lib/ansible/modules/cloud/openstack/os_flavor_facts.py b/lib/ansible/modules/cloud/openstack/os_flavor_facts.py
index 8f10b4f35a..826e3af919 100644
--- a/lib/ansible/modules/cloud/openstack/os_flavor_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_flavor_facts.py
@@ -29,7 +29,7 @@ notes:
- This module creates a new top-level C(openstack_flavors) fact, which
contains a list of unsorted flavors.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
name:
diff --git a/lib/ansible/modules/cloud/openstack/os_group.py b/lib/ansible/modules/cloud/openstack/os_group.py
index 93478a7297..a7c42cb286 100644
--- a/lib/ansible/modules/cloud/openstack/os_group.py
+++ b/lib/ansible/modules/cloud/openstack/os_group.py
@@ -42,7 +42,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_image_facts.py b/lib/ansible/modules/cloud/openstack/os_image_facts.py
index c452e3cd8c..8da142e5d6 100644
--- a/lib/ansible/modules/cloud/openstack/os_image_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_image_facts.py
@@ -22,7 +22,7 @@ description:
notes:
- Facts are placed in the C(openstack) variable.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
image:
diff --git a/lib/ansible/modules/cloud/openstack/os_keystone_domain.py b/lib/ansible/modules/cloud/openstack/os_keystone_domain.py
index d890e14f56..aad8290493 100644
--- a/lib/ansible/modules/cloud/openstack/os_keystone_domain.py
+++ b/lib/ansible/modules/cloud/openstack/os_keystone_domain.py
@@ -46,7 +46,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_keystone_domain_facts.py b/lib/ansible/modules/cloud/openstack/os_keystone_domain_facts.py
index 473b52c340..deb287e070 100644
--- a/lib/ansible/modules/cloud/openstack/os_keystone_domain_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_keystone_domain_facts.py
@@ -21,7 +21,7 @@ author: "Ricardo Carrillo Cruz (@rcarrillocruz)"
description:
- Retrieve facts about a one or more OpenStack domains
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "sdk"
options:
name:
diff --git a/lib/ansible/modules/cloud/openstack/os_keystone_role.py b/lib/ansible/modules/cloud/openstack/os_keystone_role.py
index 3340db7d30..e56e78a0bc 100644
--- a/lib/ansible/modules/cloud/openstack/os_keystone_role.py
+++ b/lib/ansible/modules/cloud/openstack/os_keystone_role.py
@@ -35,7 +35,7 @@ options:
- Ignored. Present for backwards compatibility
required: false
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_keystone_service.py b/lib/ansible/modules/cloud/openstack/os_keystone_service.py
index 0328559109..5f9e869705 100644
--- a/lib/ansible/modules/cloud/openstack/os_keystone_service.py
+++ b/lib/ansible/modules/cloud/openstack/os_keystone_service.py
@@ -48,7 +48,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_networks_facts.py b/lib/ansible/modules/cloud/openstack/os_networks_facts.py
index 3e76f320a9..e16cfe3706 100644
--- a/lib/ansible/modules/cloud/openstack/os_networks_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_networks_facts.py
@@ -21,7 +21,7 @@ author: "Davide Agnello (@dagnello)"
description:
- Retrieve facts about one or more networks from OpenStack.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "sdk"
options:
name:
diff --git a/lib/ansible/modules/cloud/openstack/os_nova_host_aggregate.py b/lib/ansible/modules/cloud/openstack/os_nova_host_aggregate.py
index 9a3c2aacb5..fd1a2b9847 100644
--- a/lib/ansible/modules/cloud/openstack/os_nova_host_aggregate.py
+++ b/lib/ansible/modules/cloud/openstack/os_nova_host_aggregate.py
@@ -37,7 +37,7 @@ options:
choices: [present, absent]
default: present
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_port_facts.py b/lib/ansible/modules/cloud/openstack/os_port_facts.py
index a3d33bdd1b..4d56cc4d32 100644
--- a/lib/ansible/modules/cloud/openstack/os_port_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_port_facts.py
@@ -22,7 +22,7 @@ description:
notes:
- Facts are placed in the C(openstack_ports) variable.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
port:
diff --git a/lib/ansible/modules/cloud/openstack/os_project.py b/lib/ansible/modules/cloud/openstack/os_project.py
index fab4c41f2d..b0eead8ff3 100644
--- a/lib/ansible/modules/cloud/openstack/os_project.py
+++ b/lib/ansible/modules/cloud/openstack/os_project.py
@@ -50,7 +50,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_project_facts.py b/lib/ansible/modules/cloud/openstack/os_project_facts.py
index 20fbe5d74e..8b6b05d796 100644
--- a/lib/ansible/modules/cloud/openstack/os_project_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_project_facts.py
@@ -21,7 +21,7 @@ author: "Ricardo Carrillo Cruz (@rcarrillocruz)"
description:
- Retrieve facts about a one or more OpenStack projects
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
name:
diff --git a/lib/ansible/modules/cloud/openstack/os_quota.py b/lib/ansible/modules/cloud/openstack/os_quota.py
index fb196ee8ad..f983bd5970 100644
--- a/lib/ansible/modules/cloud/openstack/os_quota.py
+++ b/lib/ansible/modules/cloud/openstack/os_quota.py
@@ -105,7 +105,7 @@ options:
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk >= 0.13.0"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_recordset.py b/lib/ansible/modules/cloud/openstack/os_recordset.py
index 4afcda742f..9ae24c9b54 100644
--- a/lib/ansible/modules/cloud/openstack/os_recordset.py
+++ b/lib/ansible/modules/cloud/openstack/os_recordset.py
@@ -54,7 +54,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_server.py b/lib/ansible/modules/cloud/openstack/os_server.py
index 667e4acbc2..1f2ca655fb 100644
--- a/lib/ansible/modules/cloud/openstack/os_server.py
+++ b/lib/ansible/modules/cloud/openstack/os_server.py
@@ -166,7 +166,7 @@ options:
description:
- Availability zone in which to create the server.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_server_action.py b/lib/ansible/modules/cloud/openstack/os_server_action.py
index a39474485a..bcba1c5dcf 100644
--- a/lib/ansible/modules/cloud/openstack/os_server_action.py
+++ b/lib/ansible/modules/cloud/openstack/os_server_action.py
@@ -54,7 +54,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_server_facts.py b/lib/ansible/modules/cloud/openstack/os_server_facts.py
index 84d0d12424..ee76596321 100644
--- a/lib/ansible/modules/cloud/openstack/os_server_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_server_facts.py
@@ -24,7 +24,7 @@ notes:
- This module creates a new top-level C(openstack_servers) fact, which
contains a list of servers.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
server:
diff --git a/lib/ansible/modules/cloud/openstack/os_server_group.py b/lib/ansible/modules/cloud/openstack/os_server_group.py
index 7b27a6dce7..1e5ebc3be0 100644
--- a/lib/ansible/modules/cloud/openstack/os_server_group.py
+++ b/lib/ansible/modules/cloud/openstack/os_server_group.py
@@ -45,7 +45,7 @@ options:
- Ignored. Present for backwards compatibility
required: false
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_server_volume.py b/lib/ansible/modules/cloud/openstack/os_server_volume.py
index 5191115538..c7727b88b4 100644
--- a/lib/ansible/modules/cloud/openstack/os_server_volume.py
+++ b/lib/ansible/modules/cloud/openstack/os_server_volume.py
@@ -44,7 +44,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_stack.py b/lib/ansible/modules/cloud/openstack/os_stack.py
index 521eb72e97..65cb25c267 100644
--- a/lib/ansible/modules/cloud/openstack/os_stack.py
+++ b/lib/ansible/modules/cloud/openstack/os_stack.py
@@ -59,7 +59,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
EXAMPLES = '''
diff --git a/lib/ansible/modules/cloud/openstack/os_subnet.py b/lib/ansible/modules/cloud/openstack/os_subnet.py
index d3f805fba2..a707a2fd63 100644
--- a/lib/ansible/modules/cloud/openstack/os_subnet.py
+++ b/lib/ansible/modules/cloud/openstack/os_subnet.py
@@ -96,7 +96,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_subnets_facts.py b/lib/ansible/modules/cloud/openstack/os_subnets_facts.py
index 8b0326742c..e4518886a4 100644
--- a/lib/ansible/modules/cloud/openstack/os_subnets_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_subnets_facts.py
@@ -21,7 +21,7 @@ author: "Davide Agnello (@dagnello)"
description:
- Retrieve facts about one or more subnets from OpenStack.
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
subnet:
diff --git a/lib/ansible/modules/cloud/openstack/os_user.py b/lib/ansible/modules/cloud/openstack/os_user.py
index 6900cbe8b6..236f192f9c 100644
--- a/lib/ansible/modules/cloud/openstack/os_user.py
+++ b/lib/ansible/modules/cloud/openstack/os_user.py
@@ -66,7 +66,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_user_facts.py b/lib/ansible/modules/cloud/openstack/os_user_facts.py
index fded761d87..422544a172 100644
--- a/lib/ansible/modules/cloud/openstack/os_user_facts.py
+++ b/lib/ansible/modules/cloud/openstack/os_user_facts.py
@@ -21,7 +21,7 @@ author: "Ricardo Carrillo Cruz (@rcarrillocruz)"
description:
- Retrieve facts about a one or more OpenStack users
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
options:
name:
diff --git a/lib/ansible/modules/cloud/openstack/os_user_group.py b/lib/ansible/modules/cloud/openstack/os_user_group.py
index 1d9ebb55f8..77373d4fe0 100644
--- a/lib/ansible/modules/cloud/openstack/os_user_group.py
+++ b/lib/ansible/modules/cloud/openstack/os_user_group.py
@@ -39,7 +39,7 @@ options:
- Ignored. Present for backwards compatibility
required: false
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_user_role.py b/lib/ansible/modules/cloud/openstack/os_user_role.py
index 58c8962361..e1b030dbdd 100644
--- a/lib/ansible/modules/cloud/openstack/os_user_role.py
+++ b/lib/ansible/modules/cloud/openstack/os_user_role.py
@@ -52,7 +52,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_volume.py b/lib/ansible/modules/cloud/openstack/os_volume.py
index 743a4b5fd6..c42ffb5e4f 100644
--- a/lib/ansible/modules/cloud/openstack/os_volume.py
+++ b/lib/ansible/modules/cloud/openstack/os_volume.py
@@ -59,7 +59,7 @@ options:
- Scheduler hints passed to volume API in form of dict
version_added: "2.4"
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''
diff --git a/lib/ansible/modules/cloud/openstack/os_zone.py b/lib/ansible/modules/cloud/openstack/os_zone.py
index d19ebaa202..b7a917a3b8 100644
--- a/lib/ansible/modules/cloud/openstack/os_zone.py
+++ b/lib/ansible/modules/cloud/openstack/os_zone.py
@@ -52,7 +52,7 @@ options:
description:
- Ignored. Present for backwards compatibility
requirements:
- - "python >= 2.6"
+ - "python >= 2.7"
- "openstacksdk"
'''