docker_container and docker_swarm_service: allow to actually disable healthcheck of image (#66599)

* Allow to actually disable healthcheck of image.

* Add changelog.
pull/66599/merge
Felix Fontein 4 years ago committed by GitHub
parent d6f2b4e788
commit 5c1a3a3ac2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,3 @@
bugfixes:
- "docker_container - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented."
- "docker_swarm_service - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented."

@ -1480,6 +1480,10 @@ class TaskParameters(DockerBaseClass):
if self.client.option_minimal_versions[value]['supported']:
result[key] = getattr(self, value)
if self.disable_healthcheck:
# Make sure image's health check is overridden
result['healthcheck'] = {'test': ['NONE']}
if self.networks_cli_compatible and self.networks:
network = self.networks[0]
params = dict()

@ -1927,8 +1927,11 @@ class DockerService(DockerBaseClass):
def has_healthcheck_changed(self, old_publish):
if self.healthcheck_disabled is False and self.healthcheck is None:
return False
if self.healthcheck_disabled and old_publish.healthcheck is None:
return False
if self.healthcheck_disabled:
if old_publish.healthcheck is None:
return False
if old_publish.healthcheck.get('test') == ['NONE']:
return False
return self.healthcheck != old_publish.healthcheck
def has_publish_changed(self, old_publish):
@ -2053,6 +2056,8 @@ class DockerService(DockerBaseClass):
container_spec_args['labels'] = self.container_labels
if self.healthcheck is not None:
container_spec_args['healthcheck'] = types.Healthcheck(**self.healthcheck)
elif self.healthcheck_disabled:
container_spec_args['healthcheck'] = types.Healthcheck(test=['NONE'])
if self.hostname is not None:
container_spec_args['hostname'] = self.hostname
if self.hosts is not None:

Loading…
Cancel
Save