diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-03-15 15:32:43 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-03-15 15:32:43 -0400 |
commit | 837fe7dc76a186e8dbae656170c64d719d842984 (patch) | |
tree | e0243e3dd39418a88ade51aa580047c9bb45521a /playbooks/common/openshift-node | |
parent | a9ff7af9354292be391f017efb83b998ce23c63f (diff) | |
download | openshift-837fe7dc76a186e8dbae656170c64d719d842984.tar.gz openshift-837fe7dc76a186e8dbae656170c64d719d842984.tar.bz2 openshift-837fe7dc76a186e8dbae656170c64d719d842984.tar.xz openshift-837fe7dc76a186e8dbae656170c64d719d842984.zip |
Provide cacert when performing health checks
Diffstat (limited to 'playbooks/common/openshift-node')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 1f32f2786..aa71ab703 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -256,7 +256,8 @@ # Using curl here since the uri module requires python-httplib2 and # wait_for port doesn't provide health information. command: > - curl -k --silent {{ openshift.master.api_url }}/healthz/ready + curl --silent --cacert {{ openshift.master.config_dir }}/master/ca.crt + {{ openshift.master.api_url }}/healthz/ready register: api_available_output until: api_available_output.stdout == 'ok' retries: 120 |