diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-06-19 20:08:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 20:08:15 -0400 |
commit | dfd8232ec9284c0207edad62d8cb65adee07ccd3 (patch) | |
tree | 1b42a2abce8752c94b580929e6f9f7517727fa29 /roles | |
parent | fabc141055b93d541701c82ce71d31a0a1d1bb6f (diff) | |
parent | c250e0cd02bc0b96e50372fda19e704ef05422be (diff) | |
download | openshift-dfd8232ec9284c0207edad62d8cb65adee07ccd3.tar.gz openshift-dfd8232ec9284c0207edad62d8cb65adee07ccd3.tar.bz2 openshift-dfd8232ec9284c0207edad62d8cb65adee07ccd3.tar.xz openshift-dfd8232ec9284c0207edad62d8cb65adee07ccd3.zip |
Merge pull request #4489 from rhcarvalho/image-availability-no-tls
Merged by openshift-bot
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_health_checker/openshift_checks/docker_image_availability.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/docker_image_availability.py b/roles/openshift_health_checker/openshift_checks/docker_image_availability.py index 60aacf715..26bf4c09b 100644 --- a/roles/openshift_health_checker/openshift_checks/docker_image_availability.py +++ b/roles/openshift_health_checker/openshift_checks/docker_image_availability.py @@ -169,7 +169,7 @@ class DockerImageAvailability(DockerHostMixin, OpenShiftCheck): registries = [registry] for registry in registries: - args = {"_raw_params": "skopeo inspect docker://{}/{}".format(registry, image)} + args = {"_raw_params": "skopeo inspect --tls-verify=false docker://{}/{}".format(registry, image)} result = self.execute_module("command", args, task_vars=task_vars) if result.get("rc", 0) == 0 and not result.get("failed"): return True |