aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb')
-rw-r--r--catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb14
1 files changed, 12 insertions, 2 deletions
diff --git a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb
index 2e479e0848..72686111f5 100644
--- a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb
+++ b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/2_check_Backend.rb
@@ -3,6 +3,16 @@ if node['disableHttp']
protocol = "https"
https_flag = "--https"
be_port = node['BE']['https_port']
+ if node['BE-init']['tls_cert'] && node['BE-init']['tls_key']
+ tls_key = "--tls_key " + node['BE-init']['tls_key']
+ tls_cert = "--tls_cert " + node['BE-init']['tls_cert']
+ if node['BE-init']['tls_password']
+ tls_key_pw = "--tls_key_pw " + node['BE-init']['tls_password']
+ end
+ end
+ if node['BE-init']['ca_cert']
+ ca_cert = "--ca_cert " + node['BE-init']['ca_cert']
+ end
else
protocol = "http"
https_flag = ""
@@ -22,6 +32,6 @@ if node['basic_auth']
end
execute "executing-check_backend_health" do
- command "sdccheckbackend -i #{node['Nodes']['BE']} -p #{be_port} #{basic_auth_config} #{https_flag}"
+ command "sdccheckbackend -i #{node['Nodes']['BE']} -p #{be_port} #{basic_auth_config} #{https_flag} #{tls_cert} #{tls_key} #{tls_key_pw} #{ca_cert}"
action :run
-end \ No newline at end of file
+end