Add 'docker_api_version' to docker_image
By default docker-py uses latest version of Docker API. This is not always desireable, and this patch adds option to specify version, that should be used.
This commit is contained in:
parent
b5399d3446
commit
27c174128b
1 changed files with 29 additions and 9 deletions
|
@ -65,6 +65,12 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: unix://var/run/docker.sock
|
default: unix://var/run/docker.sock
|
||||||
aliases: []
|
aliases: []
|
||||||
|
docker_api_version:
|
||||||
|
description:
|
||||||
|
- Remote API version to use. This defaults to the current default as
|
||||||
|
specified by docker-py.
|
||||||
|
default: docker-py default remote API version
|
||||||
|
version_added: "2.0"
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Set the state of the image
|
- Set the state of the image
|
||||||
|
@ -137,6 +143,14 @@ if HAS_DOCKER_CLIENT:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from docker.client import APIError as DockerAPIError
|
from docker.client import APIError as DockerAPIError
|
||||||
|
|
||||||
|
try:
|
||||||
|
# docker-py 1.2+
|
||||||
|
import docker.constants
|
||||||
|
DEFAULT_DOCKER_API_VERSION = docker.constants.DEFAULT_DOCKER_API_VERSION
|
||||||
|
except (ImportError, AttributeError):
|
||||||
|
# docker-py less than 1.2
|
||||||
|
DEFAULT_DOCKER_API_VERSION = docker.client.DEFAULT_DOCKER_API_VERSION
|
||||||
|
|
||||||
class DockerImageManager:
|
class DockerImageManager:
|
||||||
|
|
||||||
def __init__(self, module):
|
def __init__(self, module):
|
||||||
|
@ -147,7 +161,10 @@ class DockerImageManager:
|
||||||
self.tag = self.module.params.get('tag')
|
self.tag = self.module.params.get('tag')
|
||||||
self.nocache = self.module.params.get('nocache')
|
self.nocache = self.module.params.get('nocache')
|
||||||
docker_url = urlparse(module.params.get('docker_url'))
|
docker_url = urlparse(module.params.get('docker_url'))
|
||||||
self.client = docker.Client(base_url=docker_url.geturl(), timeout=module.params.get('timeout'))
|
self.client = docker.Client(
|
||||||
|
base_url=docker_url.geturl(),
|
||||||
|
version=module.params.get('docker_api_version'),
|
||||||
|
timeout=module.params.get('timeout'))
|
||||||
self.changed = False
|
self.changed = False
|
||||||
self.log = []
|
self.log = []
|
||||||
self.error_msg = None
|
self.error_msg = None
|
||||||
|
@ -227,6 +244,9 @@ def main():
|
||||||
nocache = dict(default=False, type='bool'),
|
nocache = dict(default=False, type='bool'),
|
||||||
state = dict(default='present', choices=['absent', 'present', 'build']),
|
state = dict(default='present', choices=['absent', 'present', 'build']),
|
||||||
docker_url = dict(default='unix://var/run/docker.sock'),
|
docker_url = dict(default='unix://var/run/docker.sock'),
|
||||||
|
docker_api_version = dict(required=False,
|
||||||
|
default=DEFAULT_DOCKER_API_VERSION,
|
||||||
|
type='str'),
|
||||||
timeout = dict(default=600, type='int'),
|
timeout = dict(default=600, type='int'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue