diff options
author | Olivier Buisson <olivier@openkumo.fr> | 2017-03-13 14:57:59 +0100 |
---|---|---|
committer | Olivier Buisson <olivier@openkumo.fr> | 2017-03-13 14:57:59 +0100 |
commit | 8538ecd50738ada6eb2b7a338a4ceb1cbca71313 (patch) | |
tree | 43ecfde425222597cdc7c9c519312202dc840f94 /roles/openshift_master/tasks | |
parent | 608b6debb28d9b477d21cd78f01d0bfbcd04cd01 (diff) | |
download | openshift-8538ecd50738ada6eb2b7a338a4ceb1cbca71313.tar.gz openshift-8538ecd50738ada6eb2b7a338a4ceb1cbca71313.tar.bz2 openshift-8538ecd50738ada6eb2b7a338a4ceb1cbca71313.tar.xz openshift-8538ecd50738ada6eb2b7a338a4ceb1cbca71313.zip |
Force to use TLSv1.2 (related to https://github.com/openshift/openshift-ansible/pull/2707)
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 2ef61cddf..98e0da1a2 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -249,7 +249,7 @@ # Using curl here since the uri module requires python-httplib2 and # wait_for port doesn't provide health information. command: > - curl --silent + curl --silent --tlsv1.2 {% if openshift.common.version_gte_3_2_or_1_2 | bool %} --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt {% else %} |