diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-02-15 12:04:46 +0200 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2018-02-21 17:28:40 +0200 |
commit | 958c32d2d7a3e5cbd9bc672645cdeb95a49b719a (patch) | |
tree | 1ba5b0d1dbece6daa5618a005d6281bbd5c7c1dc /sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes | |
parent | 4cc47ac3abe00eda7c04b9955e56dafc819e2657 (diff) |
OOM Alignment BE,FE,KBN
Change-Id: I8ff609a6be919d5709ce95af5a6a903aeb7afc43
Issue-ID: SDC-918
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes')
3 files changed, 0 insertions, 53 deletions
diff --git a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/check_Backend.rb b/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/check_Backend.rb deleted file mode 100644 index 00bb50ebd8..0000000000 --- a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/check_Backend.rb +++ /dev/null @@ -1,19 +0,0 @@ -ruby_block "check_Backend_Health" do - block do - printf("\033[32m%s\n\033[0m", " executing BackEnd health-check, please wait...") - Chef::Resource::RubyBlock.send(:include, Chef::Mixin::ShellOut) - curl_command = "http://localhost:8080/sdc2/rest/v1/user/jh0003" - resp = Net::HTTP.get_response URI.parse(curl_command) - stat = resp.code - - case stat - when '200' - printf("\033[32m%s\n\033[0m", " BackEnd is up.") - else - printf("\033[31mstat=[%s]\n\033[0m", stat) - printf("\033[31m%s\n\033[0m", " BackEnd is DOWN!!!") - end - end - retries 12 - retry_delay 5 -end diff --git a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/import_Normatives.rb b/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/import_Normatives.rb deleted file mode 100644 index 30de529cba..0000000000 --- a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/import_Normatives.rb +++ /dev/null @@ -1,17 +0,0 @@ -cookbook_file "/tmp/normatives.tar.gz" do - source "normatives.tar.gz" -end - -working_directory = "/tmp" - -bash "import-normatives" do - cwd "#{working_directory}" - code <<-EOH - tar xvfz /tmp/normatives.tar.gz - cd normatives/scripts/import/tosca/ - /bin/chmod +x importNormativeAll.py -# add --debug=true to the importNormativeAll.py arguments to enable debug - python importONAPNormativeAll.py -i localhost > /var/lib/jetty/logs/importNormativeAll.log - EOH -end - diff --git a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/upgrade_Normatives.rb b/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/upgrade_Normatives.rb deleted file mode 100644 index b071810e9f..0000000000 --- a/sdc-os-chef/sdc-backend/chef-repo/cookbooks/sdc-normatives/recipes/upgrade_Normatives.rb +++ /dev/null @@ -1,17 +0,0 @@ -cookbook_file "/tmp/normatives.tar.gz" do - source "normatives.tar.gz" -end - -working_directory = "/tmp" - -bash "upgrade-normatives" do - cwd "#{working_directory}" - code <<-EOH - tar xvfz /tmp/normatives.tar.gz - cd normatives/scripts/import/tosca/ - /bin/chmod +x upgradeNormative.py importGroupTypes.py -# add --debug=true to the importNormativeAll.py arguments to enable debug - python upgradeONAPNormative.py -i localhost > /var/lib/jetty/logs/upgradeNormative.log - EOH -end - |