Merge pull request #2929 from gesellix/add_env_file_support_v2
add `env_file` support
This commit is contained in:
commit
0abade73c4
1 changed files with 37 additions and 5 deletions
|
@ -223,6 +223,15 @@ options:
|
||||||
description:
|
description:
|
||||||
- Pass a dict of environment variables to the container.
|
- Pass a dict of environment variables to the container.
|
||||||
default: null
|
default: null
|
||||||
|
env_file:
|
||||||
|
version_added: "2.1"
|
||||||
|
description:
|
||||||
|
- Pass in a path to a file with environment variable (FOO=BAR).
|
||||||
|
If a key value is present in both explicitly presented (i.e. as 'env')
|
||||||
|
and in the environment file, the explicit value will override.
|
||||||
|
Requires docker-py >= 1.4.0.
|
||||||
|
default: null
|
||||||
|
required: false
|
||||||
dns:
|
dns:
|
||||||
description:
|
description:
|
||||||
- List of custom DNS servers for the container.
|
- List of custom DNS servers for the container.
|
||||||
|
@ -677,7 +686,8 @@ class DockerManager(object):
|
||||||
'stop_timeout': ((0, 5, 0), '1.0'),
|
'stop_timeout': ((0, 5, 0), '1.0'),
|
||||||
'ulimits': ((1, 2, 0), '1.18'),
|
'ulimits': ((1, 2, 0), '1.18'),
|
||||||
# Clientside only
|
# Clientside only
|
||||||
'insecure_registry': ((0, 5, 0), '0.0')
|
'insecure_registry': ((0, 5, 0), '0.0'),
|
||||||
|
'env_file': ((1, 4, 0), '0.0')
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, module):
|
def __init__(self, module):
|
||||||
|
@ -728,7 +738,9 @@ class DockerManager(object):
|
||||||
if self.module.params.get('links'):
|
if self.module.params.get('links'):
|
||||||
self.links = self.get_links(self.module.params.get('links'))
|
self.links = self.get_links(self.module.params.get('links'))
|
||||||
|
|
||||||
self.env = self.module.params.get('env', None)
|
env = self.module.params.get('env', None)
|
||||||
|
env_file = self.module.params.get('env_file', None)
|
||||||
|
self.environment = self.get_environment(env, env_file)
|
||||||
|
|
||||||
self.ulimits = None
|
self.ulimits = None
|
||||||
if self.module.params.get('ulimits'):
|
if self.module.params.get('ulimits'):
|
||||||
|
@ -867,6 +879,25 @@ class DockerManager(object):
|
||||||
'.'.join(map(str, self.docker_py_versioninfo)),
|
'.'.join(map(str, self.docker_py_versioninfo)),
|
||||||
api_version))
|
api_version))
|
||||||
|
|
||||||
|
def get_environment(self, env, env_file):
|
||||||
|
"""
|
||||||
|
If environment files are combined with explicit environment variables, the explicit environment variables will override the key from the env file.
|
||||||
|
"""
|
||||||
|
final_env = {}
|
||||||
|
|
||||||
|
if env_file:
|
||||||
|
self.ensure_capability('env_file')
|
||||||
|
parsed_env_file = docker.utils.parse_env_file(env_file)
|
||||||
|
|
||||||
|
for name, value in parsed_env_file.iteritems():
|
||||||
|
final_env[name] = str(value)
|
||||||
|
|
||||||
|
if env:
|
||||||
|
for name, value in env.iteritems():
|
||||||
|
final_env[name] = str(value)
|
||||||
|
|
||||||
|
return final_env
|
||||||
|
|
||||||
def get_links(self, links):
|
def get_links(self, links):
|
||||||
"""
|
"""
|
||||||
Parse the links passed, if a link is specified without an alias then just create the alias of the same name as the link
|
Parse the links passed, if a link is specified without an alias then just create the alias of the same name as the link
|
||||||
|
@ -1242,8 +1273,8 @@ class DockerManager(object):
|
||||||
name, value = image_env.split('=', 1)
|
name, value = image_env.split('=', 1)
|
||||||
expected_env[name] = value
|
expected_env[name] = value
|
||||||
|
|
||||||
if self.env:
|
if self.environment:
|
||||||
for name, value in self.env.iteritems():
|
for name, value in self.environment.iteritems():
|
||||||
expected_env[name] = str(value)
|
expected_env[name] = str(value)
|
||||||
|
|
||||||
actual_env = {}
|
actual_env = {}
|
||||||
|
@ -1584,7 +1615,7 @@ class DockerManager(object):
|
||||||
'command': self.module.params.get('command'),
|
'command': self.module.params.get('command'),
|
||||||
'ports': self.exposed_ports,
|
'ports': self.exposed_ports,
|
||||||
'volumes': self.volumes,
|
'volumes': self.volumes,
|
||||||
'environment': self.env,
|
'environment': self.environment,
|
||||||
'labels': self.module.params.get('labels'),
|
'labels': self.module.params.get('labels'),
|
||||||
'hostname': self.module.params.get('hostname'),
|
'hostname': self.module.params.get('hostname'),
|
||||||
'domainname': self.module.params.get('domainname'),
|
'domainname': self.module.params.get('domainname'),
|
||||||
|
@ -1832,6 +1863,7 @@ def main():
|
||||||
hostname = dict(default=None),
|
hostname = dict(default=None),
|
||||||
domainname = dict(default=None),
|
domainname = dict(default=None),
|
||||||
env = dict(type='dict'),
|
env = dict(type='dict'),
|
||||||
|
env_file = dict(default=None),
|
||||||
dns = dict(),
|
dns = dict(),
|
||||||
detach = dict(default=True, type='bool'),
|
detach = dict(default=True, type='bool'),
|
||||||
state = dict(default='started', choices=['present', 'started', 'reloaded', 'restarted', 'stopped', 'killed', 'absent', 'running']),
|
state = dict(default='started', choices=['present', 'started', 'reloaded', 'restarted', 'stopped', 'killed', 'absent', 'running']),
|
||||||
|
|
Loading…
Reference in a new issue