aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/sdc-backend')
-rw-r--r--catalog-be/sdc-backend/Dockerfile55
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/attributes/default.rb111
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi.properties4
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi_truststore.jks4
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/keyfile4
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.p12bin4443 -> 0 bytes
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.trust.jksbin1413 -> 0 bytes
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_10_setup_cadi.rb37
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_1_cleanup_jettydir.rb29
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_2_setup_configuration.rb73
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb23
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_4_jetty_Modules.rb55
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_5_setup_elasticsearch.rb21
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_6_setup_portal_and_key_properties.rb25
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_7_logback.rb8
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_8_errors_config.rb16
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_9_prepareProbeFile.rb17
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-configuration.yaml.erb1259
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-distribution-engine-configuration.yaml.erb82
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-janusgraph.properties.erb27
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-key.properties.erb41
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-onboarding-configuration.yaml.erb5
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-portal.properties.erb89
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/cadi.properties.erb54
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/http-ini.erb29
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/https-ini.erb29
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb9
-rw-r--r--catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ssl-ini.erb90
-rw-r--r--catalog-be/sdc-backend/chef-solo/LICENSE201
-rw-r--r--catalog-be/sdc-backend/chef-solo/README.md37
-rw-r--r--catalog-be/sdc-backend/chef-solo/chefignore11
-rw-r--r--catalog-be/sdc-backend/chef-solo/cookbooks/README.md54
-rw-r--r--catalog-be/sdc-backend/chef-solo/data_bags/README.md63
-rw-r--r--catalog-be/sdc-backend/chef-solo/environments/README.md5
-rw-r--r--catalog-be/sdc-backend/chef-solo/roles/README.md16
-rw-r--r--catalog-be/sdc-backend/chef-solo/roles/catalog-be.json26
-rw-r--r--catalog-be/sdc-backend/chef-solo/solo.json4
-rw-r--r--catalog-be/sdc-backend/chef-solo/solo.rb16
-rw-r--r--catalog-be/sdc-backend/context.xml.template14
-rw-r--r--catalog-be/sdc-backend/startup.sh30
40 files changed, 0 insertions, 2673 deletions
diff --git a/catalog-be/sdc-backend/Dockerfile b/catalog-be/sdc-backend/Dockerfile
deleted file mode 100644
index bc4f27a79a..0000000000
--- a/catalog-be/sdc-backend/Dockerfile
+++ /dev/null
@@ -1,55 +0,0 @@
-FROM jetty:9.4.31-jre11-slim
-
-USER root
-
-# Install Chef
-RUN set -ex && \
- apt-get update -y && \
- apt-get install -y \
- jq \
- curl \
- curl \
- vim \
- make \
- gcc \
- ruby \
- ruby-dev \
- libffi-dev \
- libxml2-dev && \
- gem install \
- chef:13.8.5 \
- berkshelf:6.3.1 \
- io-console:0.4.6 \
- etc webrick \
- --no-document && \
- gem cleanup && \
- apt-get update -y && \
- apt-get install -y binutils jq && \
- apt-get clean
-
-# Replace Jetty user ID
-ENV USER_JETTY="jetty"
-ENV GROUP_JETTY="jetty"
-ENV UID_JETTY="352070"
-ENV GID_JETTY="35953"
-
-# Remove user:
-RUN deluser ${USER_JETTY}
-#RUN delgroup ${GROUP_JETTY}
-RUN echo "${USER_JETTY}:x:${UID_JETTY}:${GID_JETTY}::/home/${USER_JETTY}:Linux User,,,:/home/jetty:/bin/false" >> /etc/passwd
-RUN echo "${GROUP_JETTY}:x:${GID_JETTY}:${USER_JETTY}" >> /etc/group
-RUN echo "${USER_JETTY}:!:17501:0:99999:7:::" >> /etc/shadow
-RUN mkdir /home/${USER_JETTY} && chown ${USER_JETTY}:${GROUP_JETTY} /home/${USER_JETTY}
-RUN chown -R jetty:jetty ${JETTY_BASE}/webapps /var/lib/jetty
-
-USER jetty
-
-COPY --chown=jetty:jetty chef-solo ${JETTY_BASE}/chef-solo/
-COPY --chown=jetty:jetty chef-repo/cookbooks/. ${JETTY_BASE}/chef-solo/cookbooks/
-ADD --chown=jetty:jetty catalog-be-*.war ${JETTY_BASE}/webappwar/
-ADD --chown=jetty:jetty context.xml ${JETTY_BASE}/webapps/
-COPY --chown=jetty:jetty startup.sh ${JETTY_BASE}/
-
-RUN chmod 770 ${JETTY_BASE}/startup.sh
-
-ENTRYPOINT [ "sh", "-c", "${JETTY_BASE}/startup.sh"] \ No newline at end of file
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/attributes/default.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/attributes/default.rb
deleted file mode 100644
index d8c737728d..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/attributes/default.rb
+++ /dev/null
@@ -1,111 +0,0 @@
-#
-default['BE'][:http_port] = 8080
-default['BE'][:https_port] = 8443
-default['FE'][:http_port] = 8181
-default['FE'][:https_port] = 9443
-default['disableHttp'] = true
-
-
-#+----------------------------------+
-#| |
-#| Jetty |
-#| |
-#+----------------------------------+
-
-default['jetty']['dmaap_truststore_pwd'] = "dmaap_truststore_pwd"
-default['jetty'][:keystore_pwd] = "?(kP!Yur![*!Y5!E^f(ZKc31"
-default['jetty'][:keymanager_pwd] = "?(kP!Yur![*!Y5!E^f(ZKc31"
-# TO CHANGE THE TRUSTSTORE CERT THE JVM CONFIGURATION
-# MUST BE ALSO CHANGE IN THE startup.sh FILE
-default['jetty'][:truststore_pwd] = "z+KEj;t+,KN^iimSiS89e#p0"
-
-#Reserved for DCAE backend
-default['DCAE']['BE'][:http_port] = 8082
-default['DCAE']['BE'][:https_port] = 8444
-default['DCAE_BE_VIP'] = "dcae-be"
-
-#Cassandra
-default['cassandra']['cassandra_port'] = 9042
-default['cassandra']['datacenter_name'] = "DC-"
-default['cassandra']['cluster_name'] = "SDC-CS-"
-default['cassandra']['socket_read_timeout'] = 20000
-default['cassandra']['socket_connect_timeout'] = 20000
-default['cassandra']['janusgraph_connection_timeout'] = 10000
-default['cassandra'][:truststore_password] = "Aa123456"
-
-
-#Onboard
-default['ONBOARDING_BE'][:http_port] = 8081
-default['ONBOARDING_BE'][:https_port] = 8445
-
-#UEB
-default['UEB']['PublicKey'] = "sSJc5qiBnKy2qrlc"
-default['UEB']['SecretKey'] = "4ZRPzNJfEUK0sSNBvccd2m7X"
-
-default['Pair_EnvName'] = ""
-
-#+----------------------------------+
-#| |
-#| Portal |
-#| |
-#+----------------------------------+
-
-default['ECompP']['cipher_key'] = "AGLDdG4D04BKm2IxIWEr8o=="
-default['ECompP']['portal_user'] = "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA="
-default['ECompP']['portal_pass'] = "j85yNhyIs7zKYbR1VlwEfNhS6b7Om4l0Gx5O8931sCI="
-default['ECompP']['portal_app_name'] = "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA="
-
-
-#+----------------------------------+
-#| |
-#| DMAAP Consumer |
-#| |
-#+----------------------------------+
-
-default['DMAAP']['active'] = false
-default['DMAAP']['consumer']['aftEnvironment'] = "AFTUAT"
-default['DMAAP']['consumer']['consumerGroup'] = "ccd_onap"
-default['DMAAP']['consumer']['consumerId'] = "ccd_onap"
-default['DMAAP']['consumer']['dme2preferredRouterFilePath'] = "DME2preferredRouter.txt"
-default['DMAAP']['consumer']['environment'] = "TEST"
-default['DMAAP']['consumer']['host'] = "dmaap.onap.com"
-default['DMAAP']['consumer']['password'] = "password"
-default['DMAAP']['consumer']['port'] = 3905
-default['DMAAP']['consumer']['serviceName'] = "dmaap-v1.dev.dmaap.dt.saat.acsi.onap.com/events"
-default['DMAAP']['consumer']['topic'] = "com.onap.ccd.CCD-CatalogManagement-v1"
-default['DMAAP']['consumer']['username'] = "user"
-default['DMAAP']['partitioncount'] = "3"
-default['DMAAP']['replicationcount'] = "3"
-
-
-#+----------------------------------+
-#| |
-#| Access Restriction / CADI |
-#| |
-#+----------------------------------+
-
-# Cadi
-default['access_restriction']['cadi_root_dir'] = "/var/lib/jetty/etc"
-default['access_restriction']['cadi_keyfile'] = "/var/lib/jetty/etc/org.onap.sdc.p12"
-default['access_restriction']['cadi_loglevel'] = "DEBUG"
-default['access_restriction']['cadi_truststore'] = "/var/lib/jetty/etc/org.onap.sdc.trust.jks"
-default['access_restriction']['cadi_truststore_password'] = "changeit"
-default['access_restriction']['cadiX509Issuers'] = "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US"
-default['access_restriction']['encrypted_password'] = "enc:AccessRestrictionEncryptedPassword"
-default['access_restriction_key'] = nil
-
-# Access Restriction Key
-default['aafNamespace'] = "com.onap.sdc"
-default['access_restriction']['aaf_env'] = "TEST"
-default['access_restriction']['aaf_id'] = "user"
-default['access_restriction']['aaf_locate_url'] = ""
-default['access_restriction']['aaf_password'] = "enc:AafEncriptedPassword"
-default['access_restriction']['aaf_url'] = ""
-default['access_restriction']['aafAuthNeeded'] = false
-default['access_restriction']['AFT_DME2_CLIENT_IGNORE_SSL_CONFIG'] = true
-default['access_restriction']['AFT_DME2_HTTP_EXCHANGE_TRACE_ON'] = true
-default['access_restriction']['AFT_ENVIRONMENT'] = "AFTUAT"
-default['access_restriction']['csp_domain'] = "PROD"
-default['access_restriction']['excluded_urls'] = "'/.*'"
-default['access_restriction']['excluded_urls_onboarding'] = "'/.*'"
-
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi.properties b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi.properties
deleted file mode 100644
index 1011ba344d..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi.properties
+++ /dev/null
@@ -1,4 +0,0 @@
-#############################################################
-# This file should be replaced with jetty cadi.properties: #
-# /var/lib/jetty/base/be/etc/cadi.properties #
-#############################################################
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi_truststore.jks b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi_truststore.jks
deleted file mode 100644
index 0835ef4542..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/cadi_truststore.jks
+++ /dev/null
@@ -1,4 +0,0 @@
-##################################################################
-## This file should be replaced with jetty cadi_truststore.jks: #
-## /var/lib/jetty/base/be/etc/cadi_truststore.jks #
-##################################################################
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/keyfile b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/keyfile
deleted file mode 100644
index 43d20d4c05..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/keyfile
+++ /dev/null
@@ -1,4 +0,0 @@
-#############################################################
-# This file should be replaced with jetty keyfile: #
-# /var/lib/jetty/base/be/etc/keyfile #
-#############################################################
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.p12 b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.p12
deleted file mode 100644
index 446856071b..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.p12
+++ /dev/null
Binary files differ
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.trust.jks b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.trust.jks
deleted file mode 100644
index e6686cc08c..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.trust.jks
+++ /dev/null
Binary files differ
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_10_setup_cadi.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_10_setup_cadi.rb
deleted file mode 100644
index 3a79cfc874..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_10_setup_cadi.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-jetty_base = "#{ENV['JETTY_BASE']}"
-
-
-directory "Jetty_etc_dir_creation" do
- path "#{jetty_base}/etc"
- owner 'jetty'
- group 'jetty'
- mode '0755'
- action :create
- not_if { ::File.directory?("#{jetty_base}/etc") }
-end
-
-
-cookbook_file "#{jetty_base}/etc/keyfile" do
- source "keyfile"
- owner "jetty"
- group "jetty"
- mode 0755
-end
-
-
-cookbook_file "#{jetty_base}/etc/cadi_truststore.jks" do
- source "cadi_truststore.jks"
- owner "jetty"
- group "jetty"
- mode 0755
-end
-
-
-template "#{jetty_base}/etc/cadi.properties" do
- path "#{jetty_base}/etc/cadi.properties"
- source "cadi.properties.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
-end
-
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_1_cleanup_jettydir.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_1_cleanup_jettydir.rb
deleted file mode 100644
index 7ca3db813f..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_1_cleanup_jettydir.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-unless Dir.exist? "#{ENV['JETTY_BASE']}/temp"
- directory "BE_tempdir_creation" do
- path "#{ENV['JETTY_BASE']}/temp"
- owner 'jetty'
- group 'jetty'
- mode '0755'
- action :create
- end
-end
-
-unless Dir.exist? "#{ENV['JETTY_BASE']}/config"
- directory "BE_create_config_dir" do
- path "#{ENV['JETTY_BASE']}/config"
- owner 'jetty'
- group 'jetty'
- mode '0755'
- action :create
- end
-end
-
-unless Dir.exist? "#{ENV['JETTY_BASE']}/config/catalog-be"
- directory "BE_create_catalog-be" do
- path "#{ENV['JETTY_BASE']}/config/catalog-be"
- owner 'jetty'
- group 'jetty'
- mode '0755'
- action :create
- end
-end
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_2_setup_configuration.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_2_setup_configuration.rb
deleted file mode 100644
index 2e66e2da98..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_2_setup_configuration.rb
+++ /dev/null
@@ -1,73 +0,0 @@
-# Set the cassandra replica number
-replication_factor = node['cassandra']['replication_factor']
-
-if node['Pair_EnvName'] == ""
- janusgraph_dcname_with_rep = node['cassandra']['datacenter_name'] + "," + replication_factor.to_s
- conf_dcname_with_rep = node['cassandra']['datacenter_name'] + "','" + replication_factor.to_s
-else
- janusgraph_dcname_with_rep = node['cassandra']['datacenter_name'] + "," + replication_factor.to_s + "," + node['cassandra']['cluster_name'] + node['Pair_EnvName'] + "," + replication_factor.to_s
- conf_dcname_with_rep = node['cassandra']['datacenter_name'] + "','" + replication_factor.to_s + "','" + node['cassandra']['cluster_name'] + node['Pair_EnvName'] + "','" + replication_factor.to_s
-end
-
-#Set random ID for DMaap configuration
-if node['DMAAP']['random_id'].nil?
- node.default['DMAAP']['random_id'] = Time.now.getutc.to_i
-end
-
-template "janusgraph.properties" do
- path "#{ENV['JETTY_BASE']}/config/catalog-be/janusgraph.properties"
- source "BE-janusgraph.properties.erb"
- owner "jetty"
- group "jetty"
- mode "0644"
- action :create_if_missing
- variables({
- :cassandra_ip => node['Nodes']['CS'].join(",").gsub(/[|]/, ''),
- :cassandra_cql_port => node['cassandra'][:cassandra_port],
- :cassandra_pwd => node['cassandra'][:cassandra_password],
- :cassandra_usr => node['cassandra'][:cassandra_user],
- :rep_factor => replication_factor,
- :DC_NAME => node['cassandra']['datacenter_name'],
- :DC_NAME_WITH_REP => janusgraph_dcname_with_rep,
- :janus_connection_timeout => node['cassandra']['janusgraph_connection_timeout'],
- :cassandra_truststore_password => node['cassandra'][:truststore_password],
- :cassandra_ssl_enabled => "#{ENV['cassandra_ssl_enabled']}"
- })
-end
-
-template "catalog-be-config" do
- path "#{ENV['JETTY_BASE']}/config/catalog-be/configuration.yaml"
- source "BE-configuration.yaml.erb"
- owner "jetty"
- group "jetty"
- mode "0644"
- action :create_if_missing
- variables({
- :catalog_ip => node['Nodes']['BE'],
- :catalog_port => node['BE'][:http_port],
- :ssl_port => node['BE'][:https_port],
- :cassandra_ip => node['Nodes']['CS'].join(",").gsub(/[|]/, ''),
- :cassandra_port => node['cassandra']['cassandra_port'],
- :rep_factor => replication_factor,
- :DC_NAME => node['cassandra']['datacenter_name'],
- :REP_STRING => conf_dcname_with_rep,
- :janusgraph_Path => "/var/lib/jetty/config/catalog-be/",
- :socket_connect_timeout => node['cassandra']['socket_connect_timeout'],
- :socket_read_timeout => node['cassandra']['socket_read_timeout'],
- :cassandra_pwd => node['cassandra'][:cassandra_password],
- :cassandra_usr => node['cassandra'][:cassandra_user],
- :cassandra_truststore_password => node['cassandra'][:truststore_password],
- :cassandra_ssl_enabled => "#{ENV['cassandra_ssl_enabled']}",
- :dcae_be_vip => node['DCAE_BE_VIP'],
- :dmaap_active => node['DMAAP']['active']
- })
-end
-
-template "distribution-engine-configuration" do
- path "#{ENV['JETTY_BASE']}/config/catalog-be/distribution-engine-configuration.yaml"
- source "BE-distribution-engine-configuration.yaml.erb"
- owner "jetty"
- group "jetty"
- mode "0644"
- action :create_if_missing
-end
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb
deleted file mode 100644
index cb2ffc7154..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-
-directory "Jetty_etcdir_creation" do
- path "#{ENV['JETTY_BASE']}/etc"
- owner 'jetty'
- group 'jetty'
- mode '0755'
- action :create
-end
-
-cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.p12" do
- source "org.onap.sdc.p12"
- owner "jetty"
- group "jetty"
- mode 0755
-end
-
-cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.trust.jks" do
- source "org.onap.sdc.trust.jks"
- owner "jetty"
- group "jetty"
- mode 0755
-end
-
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_4_jetty_Modules.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_4_jetty_Modules.rb
deleted file mode 100644
index 34934a44af..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_4_jetty_Modules.rb
+++ /dev/null
@@ -1,55 +0,0 @@
-#Set the http module option
-if node['disableHttp']
- http_option = "#--module=http"
-else
- http_option = "--module=http"
-end
-
-
-bash "create-jetty-modules" do
-cwd "#{ENV['JETTY_BASE']}"
-code <<-EOH
- cd "#{ENV['JETTY_BASE']}"
- java -jar "#{ENV['JETTY_HOME']}"/start.jar --add-to-start=deploy
- java -jar "#{ENV['JETTY_HOME']}"/start.jar --create-startd --add-to-start=http,https,console-capture,setuid
-EOH
-end
-
-
-template "http-ini" do
- path "#{ENV['JETTY_BASE']}/start.d/http.ini"
- source "http-ini.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables ({
- :http_option => http_option ,
- :http_port => "#{node['BE'][:http_port]}"
- })
-
-end
-
-
-template "https-ini" do
- path "#{ENV['JETTY_BASE']}/start.d/https.ini"
- source "https-ini.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables :https_port => "#{node['BE'][:https_port]}"
-end
-
-
-template "ssl-ini" do
- path "#{ENV['JETTY_BASE']}/start.d/ssl.ini"
- source "ssl-ini.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables ({
- :https_port => "#{node['BE'][:https_port]}" ,
- :jetty_keystore_pwd => "#{node['jetty'][:keystore_pwd]}" ,
- :jetty_keymanager_pwd => "#{node['jetty'][:keymanager_pwd]}" ,
- :jetty_truststore_pwd => "#{node['jetty'][:truststore_pwd]}"
- })
-end
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_5_setup_elasticsearch.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_5_setup_elasticsearch.rb
deleted file mode 100644
index 7a2f24e57a..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_5_setup_elasticsearch.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-clusterName = node['elasticsearch'][:cluster_name]+node.chef_environment
-
-elasticsearch_list = ''
-
-node['Nodes']['ES'].each do |item|
- elasticsearch_list += "- " + item + ":9300\n"
-end
-
-
-
-template "elasticsearch.yml-config" do
- path "#{ENV['JETTY_BASE']}/config/elasticsearch.yml"
- source "BE-elasticsearch.yml.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables ({
- :cluster_name => "#{clusterName}",
- :es_host_ip => "#{elasticsearch_list}"
- })
-end
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_6_setup_portal_and_key_properties.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_6_setup_portal_and_key_properties.rb
deleted file mode 100644
index 4f9993848a..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_6_setup_portal_and_key_properties.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-template "template portal.properties" do
- path "#{ENV['JETTY_BASE']}/resources/portal.properties"
- source "BE-portal.properties.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables ({
- :ecomp_rest_url => node['ECompP']['ecomp_rest_url'],
- :ecomp_redirect_url => node['ECompP']['ecomp_redirect_url'],
- :ecomp_portal_user => node['ECompP']['portal_user'],
- :ecomp_portal_pass => node['ECompP']['portal_pass'],
- :portal_app_name => node['ECompP']['portal_app_name'],
- })
-end
-
-template "template key.properties" do
- path "#{ENV['JETTY_BASE']}/resources/key.properties"
- source "BE-key.properties.erb"
- owner "jetty"
- group "jetty"
- mode "0755"
- variables ({
- :cipher_key => node['ECompP']['cipher_key']
- })
-end \ No newline at end of file
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_7_logback.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_7_logback.rb
deleted file mode 100644
index 7d95d7448e..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_7_logback.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-cookbook_file "#{ENV['JETTY_BASE']}/config/catalog-be/logback.xml" do
- source "logback.xml"
- mode 0644
- owner "jetty"
- group "jetty"
- action :create_if_missing
-end
-
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_8_errors_config.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_8_errors_config.rb
deleted file mode 100644
index b100356d98..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_8_errors_config.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-cookbook_file "#{ENV['JETTY_BASE']}/config/catalog-be/ecomp-error-configuration.yaml" do
- source "ecomp-error-configuration.yaml"
- mode 0644
- owner "jetty"
- group "jetty"
- action :create_if_missing
-end
-
-cookbook_file "#{ENV['JETTY_BASE']}/config/catalog-be/error-configuration.yaml" do
- source "error-configuration.yaml"
- mode 0644
- owner "jetty"
- group "jetty"
- action :create_if_missing
-end
-
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_9_prepareProbeFile.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_9_prepareProbeFile.rb
deleted file mode 100644
index 81e1a855f4..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_9_prepareProbeFile.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-if node[:disableHttp]
- protocol = "https"
- port = "#{node['BE'][:https_port]}"
-else
- protocol = "http"
- port = "#{node['BE'][:http_port]}"
-end
-
-template "/var/lib/jetty/ready-probe.sh" do
- source "ready-probe.sh.erb"
- sensitive true
- mode 0755
- variables({
- :protocol => protocol,
- :port => port
- })
-end
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-configuration.yaml.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-configuration.yaml.erb
deleted file mode 100644
index 20f00954e3..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-configuration.yaml.erb
+++ /dev/null
@@ -1,1259 +0,0 @@
-identificationHeaderFields:
- - HTTP_IV_USER
- - HTTP_CSP_FIRSTNAME
- - HTTP_CSP_LASTNAME
- - HTTP_IV_REMOTE_ADDRESS
- - HTTP_CSP_WSTYPE
-
-# catalog backend hostname
-beFqdn: <%= @catalog_ip %>
-
-# catalog backend http port
-beHttpPort: <%= @catalog_port %>
-
-# catalog backend http context
-beContext: /sdc/rest/config/get
-
-# catalog backend protocol
-<% if node[:disableHttp] -%>
-beProtocol: https
-<% else %>
-beProtocol: http
-<% end -%>
-
-# catalog backend ssl port
-beSslPort: <%= @ssl_port %>
-version: 1.1.0
-released: 2012-11-30
-toscaConformanceLevel: 11.0
-minToscaConformanceLevel: 3.0
-
-janusGraphCfgFile: /var/lib/jetty/config/catalog-be/janusgraph.properties
-janusGraphInMemoryGraph: false
-janusGraphLockTimeout: 1800
-# The interval to try and reconnect to JanusGraph DB when it is down during ASDC startup:
-janusGraphReconnectIntervalInSeconds: 3
-
-# The read timeout towards JanusGraph DB when health check is invoked:
-janusGraphHealthCheckReadTimeout: 1
-
-# The interval to try and reconnect to Elasticsearch when it is down during ASDC startup:
-
-uebHealthCheckReconnectIntervalInSeconds: 15
-uebHealthCheckReadTimeout: 4
-
-# Protocols
-protocols:
- - http
- - https
-
-# Default imports
-defaultImports:
- - nodes:
- file: nodes.yml
- - datatypes:
- file: data.yml
- - capabilities:
- file: capabilities.yml
- - relationships:
- file: relationships.yml
- - groups:
- file: groups.yml
- - policies:
- file: policies.yml
- - annotations:
- file: annotations.yml
-
-# Global CSAR Import Files
-globalCsarImports:
- - annotations.yml
- - artifacts.yml
- - capabilities.yml
- - data.yml
- - groups.yml
- - interfaces.yml
- - nodes.yml
- - policies.yml
- - relationships.yml
-
-# Users
-users:
- tom: passwd
- bob: passwd
-
-# access restriction
-authCookie:
- securityKey: "sdcaccessrestrictionsecureykey"
- maxSessionTimeOut: 86400000
- sessionIdleTimeOut: 3600000
- cookieName: "AuthenticationCookie"
- path: /
- domain: ""
- isHttpOnly: true
- # redirect variable name from portal.properties file
- redirectURL: ""
- excludedUrls: [<%= node['access_restriction']['excluded_urls'] %>]
- onboardingExcludedUrls: [<%= node['access_restriction']['excluded_urls_onboarding'] %>]
-
-
-
-cassandraConfig:
- cassandraHosts: [<%= @cassandra_ip %>]
- cassandraPort: <%= @cassandra_port %>
- localDataCenter: <%= @DC_NAME %>
- reconnectTimeout : 30000
- socketReadTimeout: <%= @socket_read_timeout %>
- socketConnectTimeout: <%= @socket_connect_timeout %>
- authenticate: true
- username: <%= @cassandra_usr %>
- password: <%= @cassandra_pwd %>
- ssl: <%= @cassandra_ssl_enabled %>
- truststorePath : /var/lib/jetty/etc/truststore
- truststorePassword : <%= @cassandra_truststore_password %>
- keySpaces:
- - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
- - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
- - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
- - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
- - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
-
-
-licenseTypes:
- - User
- - Installation
- - CPU
-
-#Deployment artifacts placeHolder
-resourceTypes: &allResourceTypes
- - VFC
- - CP
- - VL
- - VF
- - CR
- - VFCMT
- - Abstract
- - CVFC
- - Configuration
- - ServiceProxy
- - PNF
-
-componentAllowedInstanceTypes:
- Resource:
- VF:
- - VFC
- - VF
- - CR
- - CP
- - PNF
- - CVFC
- - VL
- - Configuration
- - ServiceProxy
- - Abstract
- CVFC:
- - VFC
- - VF
- - CR
- - CP
- - PNF
- - CVFC
- - VL
- - ServiceProxy
- - Abstract
- PNF:
- - VF
- - CR
- - CP
- - PNF
- - CVFC
- - VL
- - Configuration
- - ServiceProxy
- - Abstract
- CR:
- - VF
- - CR
- - CP
- - PNF
- - CVFC
- - VL
- - Configuration
- - ServiceProxy
- - Abstract
- VL:
- - VL
- Service:
- "*":
- - VF
- - CR
- - CP
- - PNF
- - CVFC
- - VL
- - Configuration
- - ServiceProxy
- - Abstract
-
-artifacts:
- - type: CONTROLLER_BLUEPRINT_ARCHIVE
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - zip
- - type: HELM
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - tgz
- - type: YANG_XML
- categories:
- - DEPLOYMENT
- - INFORMATIONAL
- componentTypes:
- - SERVICE
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: VNF_CATALOG
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- - type: MODEL_INVENTORY_PROFILE
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- - type: MODEL_QUERY_SPEC
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- - type: UCPE_LAYER_2_CONFIGURATION
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- #AAI Artifacts
- - type: AAI_SERVICE_MODEL
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- - type: AAI_VF_MODULE_MODEL
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- - type: AAI_VF_INSTANCE_MODEL
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes:
- acceptedTypes:
- - xml
- #Plan
- - type: PLAN
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes:
- - VF
- - VFC
- acceptedTypes:
- - xml
- - type: WORKFLOW
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- - RESOURCE
- resourceTypes:
- - VFC
- - CP
- - VL
- - VF
- - CR
- - VFCMT
- - Abstract
- - CVFC
- - PNF
- acceptedTypes:
- - type: HEAT
- categories:
- - DEPLOYMENT
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - yaml
- - yml
- - type: HEAT_VOL
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - yaml
- - yml
- - type: HEAT_NET
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - yaml
- - yml
- - type: HEAT_NESTED
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - yaml
- - yml
- - type: HEAT_ARTIFACT
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - zip
- - tgz
- - csar
- - type: VNF_CATALOG
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: VF_LICENSE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: VENDOR_LICENSE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: MODEL_INVENTORY_PROFILE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: MODEL_QUERY_SPEC
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - xml
- - type: LIFECYCLE_OPERATIONS
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFC
- acceptedTypes:
- - yaml
- - yml
- - type: VES_EVENTS
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes:
- - VFC
- - CP
- - VL
- - VF
- - CR
- - VFCMT
- - Abstract
- - CVFC
- - PNF
- acceptedTypes:
- - yaml
- - yml
- - type: PERFORMANCE_COUNTER
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - csv
- - type: APPC_CONFIG
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- acceptedTypes:
- - type: DCAE_TOSCA
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFCMT
- acceptedTypes:
- - yml
- - yaml
- - type: DCAE_JSON
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFCMT
- acceptedTypes:
- - json
- - type: DCAE_POLICY
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFCMT
- acceptedTypes:
- - emf
- - type: DCAE_DOC
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFCMT
- acceptedTypes:
- - type: DCAE_EVENT
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFCMT
- acceptedTypes:
- - type: AAI_VF_MODEL
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- acceptedTypes:
- - xml
- - type: AAI_VF_MODULE_MODEL
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- acceptedTypes:
- - xml
- - type: OTHER
- categories:
- - DEPLOYMENT
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VFC
- - CVFC
- - CP
- - VL
- - VF
- - VFCMT
- - Abstract
- - PNF
- acceptedTypes:
- - type: SNMP_POLL
- categories:
- - DEPLOYMENT
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: SNMP_TRAP
- categories:
- - DEPLOYMENT
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: PM_DICTIONARY
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - yaml
- - yml
- - type: YANG_MODULE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - yang
- - type: ANSIBLE_PLAYBOOK
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - yaml
- - yml
- - type: ONBOARDED_PACKAGE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - csar
- - zip
- - type: ETSI_PACKAGE
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - PNF
- acceptedTypes:
- - csar
- - zip
- - type: HEAT_ENV
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - env
- - type: VF_MODULES_METADATA
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - json
- - type: DCAE_INVENTORY_TOSCA
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - yml
- - yaml
- - type: DCAE_INVENTORY_JSON
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - json
- - type: DCAE_INVENTORY_POLICY
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - emf
- - type: DCAE_INVENTORY_DOC
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - type: DCAE_INVENTORY_BLUEPRINT
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - type: DCAE_INVENTORY_EVENT
- categories:
- - DEPLOYMENT
- componentTypes:
- - RESOURCE_INSTANCE
- resourceTypes:
- acceptedTypes:
- - type: CHEF
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: PUPPET
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: SHELL
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: YANG
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: BPEL
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: DG_XML
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: MURANO_PKG
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: PNF_SW_INFORMATION
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes:
- - PNF
- acceptedTypes:
- - yaml
- - yml
- - type: GUIDE
- categories:
- - INFORMATIONAL
- componentTypes:
- - RESOURCE
- resourceTypes:
- - VF
- - VFC
- - CVFC
- - PNF
- acceptedTypes:
- - yaml
- - yml
- - type: FLOW
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - type: SHELL_SCRIPT
- categories:
- - DEPLOYMENT
- componentTypes:
- - SERVICE
- - SERVICE_INSTANCE
- - RESOURCE
- - RESOURCE_INSTANCE
- resourceTypes: *allResourceTypes
- acceptedTypes:
- - sh
- - type: TOSCA_CSAR
- categories:
- - TOSCA
- componentTypes:
- resourceTypes:
- acceptedTypes:
- - csar
- - type: TOSCA_TEMPLATE
- categories:
- - TOSCA
- componentTypes:
- resourceTypes:
- acceptedTypes:
- - yml
- - yaml
- - type: NETWORK_CALL_FLOW
- categories:
- componentTypes:
- resourceTypes:
- acceptedTypes:
- - type: ICON
- categories:
- componentTypes:
- resourceTypes:
- acceptedTypes:
-
-deploymentResourceArtifacts:
-
-deploymentResourceInstanceArtifacts:
- heatEnv:
- displayName: "HEAT ENV"
- type: HEAT_ENV
- description: "Auto-generated HEAT Environment deployment artifact"
- fileExtension: "env"
- VfHeatEnv:
- displayName: "VF HEAT ENV"
- type: HEAT_ENV
- description: "VF Auto-generated HEAT Environment deployment artifact"
- fileExtension: "env"
-
-#tosca artifacts placeholders
-toscaArtifacts:
- assetToscaTemplate:
- artifactName: -template.yml
- displayName: Tosca Template
- type: TOSCA_TEMPLATE
- description: TOSCA representation of the asset
- assetToscaCsar:
- artifactName: -csar.csar
- displayName: Tosca Model
- type: TOSCA_CSAR
- description: TOSCA definition package of the asset
-
-#Informational artifacts placeHolder
-excludeResourceCategory:
- - Generic
-excludeResourceType:
- - PNF
- - CR
-informationalResourceArtifacts:
- features:
- displayName: Features
- type: OTHER
- capacity:
- displayName: Capacity
- type: OTHER
- vendorTestResult:
- displayName: Vendor Test Result
- type: OTHER
- testScripts:
- displayName: Test Scripts
- type: OTHER
- CloudQuestionnaire:
- displayName: Cloud Questionnaire (completed)
- type: OTHER
- HEATTemplateFromVendor:
- displayName: HEAT Template from Vendor
- type: HEAT
- resourceSecurityTemplate:
- displayName: Resource Security Template
- type: OTHER
-
-excludeServiceCategory:
-
-informationalServiceArtifacts:
- serviceArtifactPlan:
- displayName: Service Artifact Plan
- type: OTHER
- summaryOfImpactsToECOMPElements:
- displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
- type: OTHER
- controlLoopFunctions:
- displayName: Control Loop Functions
- type: OTHER
- dimensioningInfo:
- displayName: Dimensioning Info
- type: OTHER
- affinityRules:
- displayName: Affinity Rules
- type: OTHER
- operationalPolicies:
- displayName: Operational Policies
- type: OTHER
- serviceSpecificPolicies:
- displayName: Service-specific Policies
- type: OTHER
- engineeringRules:
- displayName: Engineering Rules (ERD)
- type: OTHER
- distributionInstructions:
- displayName: Distribution Instructions
- type: OTHER
- certificationTestResults:
- displayName: TD Certification Test Results
- type: OTHER
- deploymentVotingRecord:
- displayName: Deployment Voting Record
- type: OTHER
- serviceQuestionnaire:
- displayName: Service Questionnaire
- type: OTHER
- serviceSecurityTemplate:
- displayName: Service Security Template
- type: OTHER
-
-serviceApiArtifacts:
- configuration:
- displayName: Configuration
- type: OTHER
- instantiation:
- displayName: Instantiation
- type: OTHER
- monitoring:
- displayName: Monitoring
- type: OTHER
- reporting:
- displayName: Reporting
- type: OTHER
- logging:
- displayName: Logging
- type: OTHER
- testing:
- displayName: Testing
- type: OTHER
-
-
-additionalInformationMaxNumberOfKeys: 50
-
-systemMonitoring:
- enabled: false
- isProxy: false
- probeIntervalInSeconds: 15
-heatArtifactDeploymentTimeout:
- defaultMinutes: 30
- minMinutes: 1
- maxMinutes: 120
-
-unLoggedUrls:
- - /sdc2/rest/monitoring
- - /sdc2/rest/healthCheck
-
-cleanComponentsConfiguration:
- cleanIntervalInMinutes: 1440
- componentsToClean:
- - Resource
- - Service
-
-artifactsIndex: resources
-
-heatEnvArtifactHeader: ""
-heatEnvArtifactFooter: ""
-
-onboarding:
- host: <%= node['ONBOARDING_BE_VIP'] %>
- <% if node[:disableHttp] -%>
- protocol: https
- port: <%= node['ONBOARDING_BE'][:https_port] %>
- <% else %>
- protocol: http
- port: <%= node['ONBOARDING_BE'][:http_port] %>
- <% end -%>
- downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
- healthCheckUri: "/onboarding-api/v1.0/healthcheck"
-
-dcae:
- host: <%= @dcae_be_vip %>
- <% if node[:disableHttp] -%>
- protocol: https
- port: <%= node['DCAE']['BE'][:https_port] %>
- <% else %>
- protocol: http
- port: <%= node['DCAE']['BE'][:http_port] %>
- <% end -%>
- healthCheckUri: "/dcae/healthCheck"
-
-# #GSS IDNS
-switchoverDetector:
- gBeFqdn:
- gFeFqdn:
- beVip: 1.2.3.4
- feVip: 1.2.3.4
- beResolveAttempts: 3
- feResolveAttempts: 3
- enabled: false
- interval: 60
- changePriorityUser: ecompasdc
- changePriorityPassword: ecompasdc123
- publishNetworkUrl:
- publishNetworkBody: '{"note":"comment"}'
- groups:
- beSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["","","failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
- feSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["",""],"failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
-
-applicationL1Cache:
- datatypes:
- enabled: true
- firstRunDelay: 10
- pollIntervalInSec: 60
-
-applicationL2Cache:
- enabled: false
- catalogL1Cache:
- enabled: false
- resourcesSizeInCache: 300
- servicesSizeInCache: 200
- productsSizeInCache: 100
- queue:
- syncIntervalInSecondes: 43200
- waitOnShutDownInMinutes: 10
- numberOfCacheWorkers: 4
-
-toscaValidators:
- stringMaxLength: 2500
-
-disableAudit: false
-
-consumerBusinessLogic: true
-
-vfModuleProperties:
- min_vf_module_instances:
- forBaseModule: 1
- forNonBaseModule: 0
- max_vf_module_instances:
- forBaseModule: 1
- forNonBaseModule:
- initial_count:
- forBaseModule: 1
- forNonBaseModule: 0
- vf_module_type:
- forBaseModule: Base
- forNonBaseModule: Expansion
-
-genericAssetNodeTypes:
- VFC: org.openecomp.resource.abstract.nodes.VFC
- CVFC: org.openecomp.resource.abstract.nodes.VFC
- VF : org.openecomp.resource.abstract.nodes.VF
- CR : org.openecomp.resource.abstract.nodes.CR
- PNF: org.openecomp.resource.abstract.nodes.PNF
- Service: org.openecomp.resource.abstract.nodes.service
- ETSI Network Service: tosca.nodes.nfv.NS
-
-serviceNodeTypes:
- ETSI Network Service: tosca.nodes.nfv.NS
-
-workloadContext: Production
-
-environmentContext:
- defaultValue: General_Revenue-Bearing
- validValues:
- - Critical_Revenue-Bearing
- - Vital_Revenue-Bearing
- - Essential_Revenue-Bearing
- - Important_Revenue-Bearing
- - Needed_Revenue-Bearing
- - Useful_Revenue-Bearing
- - General_Revenue-Bearing
- - Critical_Non-Revenue
- - Vital_Non-Revenue
- - Essential_Non-Revenue
- - Important_Non-Revenue
- - Needed_Non-Revenue
- - Useful_Non-Revenue
- - General_Non-Revenue
-
-gabConfig:
- - artifactType: 'VES_EVENTS'
- pathsAndNamesDefinitions:
- -
- friendlyName: "Action"
- path: "event.action[2]"
- searchable: true
- -
- friendlyName: "Comment"
- path: "event.comment"
- searchable: true
- -
- friendlyName: "Alarm Additional Information"
- path: "event.structure.faultFields.structure.alarmAdditionalInformation.comment"
- searchable: true
- - artifactType: 'PM_DICTIONARY'
- pathsAndNamesDefinitions:
- -
- friendlyName: "measType"
- path: "pmMetaData.pmFields.measType"
- searchable: true
- -
- friendlyName: "measDescription"
- path: "pmMetaData.pmFields.measDescription"
- searchable: true
- -
- friendlyName: "measCondition"
- path: "pmMetaData.pmFields.measCondition"
- searchable: false
- -
- friendlyName: "measResultUnits"
- path: "pmMetaData.pmFields.measResultUnits"
- searchable: false
- -
- friendlyName: "measResultRange"
- path: "pmMetaData.pmFields.measResultRange"
- searchable: false
- -
- friendlyName: "measObjClass"
- path: "pmMetaData.pmFields.measObjClass"
- searchable: true
- -
- friendlyName: "measCollectionMethod"
- path: "pmMetaData.pmFields.measCollectionMethod"
- searchable: false
- -
- friendlyName: "measInfoId"
- path: "pmMetaData.pmFields.measInfoId"
- searchable: true
- -
- friendlyName: "iMeasInfoId"
- path: "pmMetaData.pmFields.iMeasInfoId"
- searchable: false
-
-dmaapConsumerConfiguration:
- active: <%= @dmaap_active %>
- hosts: localhost:3905
- consumerGroup: sdc
- consumerId: mama
- timeoutMs: 15000
- limit: 1
- pollingInterval: 2
- topic: topic
- latitude: 32.109333
- longitude: 34.855499
- version: 1.0
- serviceName: localhost/events
- environment: TEST
- partner: BOT_R
- routeOffer: MR1
- protocol: https
- contenttype: application/json
- dme2TraceOn: true
- aftEnvironment: AFTUAT
- aftDme2ConnectionTimeoutMs: 15000
- aftDme2RoundtripTimeoutMs: 240000
- aftDme2ReadTimeoutMs: 50000
- dme2preferredRouterFilePath: DME2preferredRouter.txt
- timeLimitForNotificationHandleMs: 120000
- credential:
- username: user
- password:
- aftDme2SslEnable: true
- aftDme2ClientKeystore: /var/lib/jetty/etc/truststore
- aftDme2ClientKeystorePassword: ""
- aftDme2ClientSslCertAlias: certman
-
-dmaapProducerConfiguration:
- active: true
- hosts: <%= node['DMAAP']['producer']['host']%>
- consumerGroup: sdc-<%= node.chef_environment %>-<%= node['DMAAP']['random_id'] %>
- consumerId: sdc-<%= node.chef_environment %>1-<%= node['DMAAP']['random_id'] %>
- timeoutMs: 15000
- limit: 1
- pollingInterval: 2
- topic: <%= node['DMAAP']['producer']['topic'] %>
- latitude: 32.109333
- longitude: 34.855499
- version: 1.0
- serviceName: <%= node['DMAAP']['producer']['serviceName'] %>
- environment: <%= node['DMAAP']['producer']['environment'] %>
- partner: BOT_R
- routeOffer: MR1
- protocol: <%= node['http_protocol'] %>
- contenttype: application/json
- dme2TraceOn: true
- aftEnvironment: <%= node['DMAAP']['producer']['aftEnvironment']%>
- aftDme2ConnectionTimeoutMs: 15000
- aftDme2RoundtripTimeoutMs: 240000
- aftDme2ReadTimeoutMs: 50000
- dme2preferredRouterFilePath: <%= node['DMAAP']['producer']['dme2preferredRouterFilePath'] %>
- timeLimitForNotificationHandleMs: 120000
- credential:
- username: <%= node['DMAAP']['producer']['username'] %>
- password: <%= node['DMAAP']['producer']['password'] %>
- aftDme2SslEnable: true
- aftDme2ClientKeystore: /var/lib/jetty/etc/truststore
- aftDme2ClientKeystorePassword: <%= node['jetty']['dmaap_truststore_pwd'] %>
- aftDme2ClientSslCertAlias: certman
-
-
-# ToDo: AF - had to remove due to configuration laod class failure
-#dmeConfiguration:
-# lookupUriFormat: "http://DME2RESOLVE/service=%s/version=1.0.0/envContext=%s/routeOffer=DEFAULT"
-# dme2Search: DME2SEARCH
-# dme2Resolve: DME2RESOLVE
-
-excludedPolicyTypesMapping:
- # VF:
- # - a.b.c
- # - c.d.e
- #CR:
- # - x.y.z
-
-excludedGroupTypesMapping:
- CR:
- - org.openecomp.groups.VfModule
- - org.openecomp.groups.heat.HeatStack
- - org.openecomp.groups.Group
- - tosca.groups.Root
- PNF:
- - org.openecomp.groups.VfModule
- - org.openecomp.groups.heat.HeatStack
- - org.openecomp.groups.Group
- - tosca.groups.Root
- VF:
- - org.openecomp.groups.VfModule
- - org.openecomp.groups.heat.HeatStack
- - org.openecomp.groups.Group
- - tosca.groups.Root
- Service:
- - org.openecomp.groups.VfModule
- - org.openecomp.groups.heat.HeatStack
- - org.openecomp.groups.Group
- - tosca.groups.Root
-
-healthStatusExclude:
- - DE
- - DMAAP
- - DMAAP_PRODUCER
- - ON_BOARDING
- - DCAE
- - PORTAL
- - External API
-
-#Auto Healing
-enableAutoHealing: false
-appVersion: <%= @app_version %>
-
-artifactGeneratorConfig: Artifact-Generator.properties
-resourcesForUpgrade:
- 8.0:
- - org.openecomp.resource.cp.extCP
- - tosca.nodes.network.Network
- - tosca.nodes.network.Port
- - org.openecomp.resource.cp.nodes.network.SubInterface
-skipUpgradeFailedVfs: true
-skipUpgradeVSPs: true
-autoHealingOwner: jh0003
-supportAllottedResourcesAndProxy: true
-deleteLockTimeoutInSeconds: 60
-maxDeleteComponents: 10
-
-# Cadi filter (access restriction) Parameters
-aafNamespace: <%= node['aafNamespace'] %>
-aafAuthNeeded: <%= node['access_restriction']['aafAuthNeeded'] %>
-
-cadiFilterParams:
- AFT_LATITUDE: "32.780140"
- AFT_LONGITUDE: "-96.800451"
- hostname: <%= node['BE_VIP'] %>
- aaf_id: <%= node['access_restriction']['aaf_id'] %>
- aaf_env: <%= node['access_restriction']['aaf_env'] %>
- aaf_url: <%= node['access_restriction']['aaf_url'] %>
- csp_domain: <%= node['access_restriction']['csp_domain'] %>
- cadi_keyfile: <%= node['access_restriction']['cadi_keyfile'] %>
- aaf_password: <%= node['access_restriction']['aaf_password'] %>
- cadi_loglevel: <%= node['access_restriction']['cadi_loglevel'] %>
- AFT_ENVIRONMENT: <%= node['access_restriction']['AFT_ENVIRONMENT'] %>
- cadiX509Issuers: <%= node['access_restriction']['cadiX509Issuers'] %>
- cadi_truststore: <%= node['access_restriction']['cadi_truststore'] %>
- cadi_truststore_password: <%= node['access_restriction']['cadi_truststore_password'] %>
-
-# This configuration entry lists all node type names prefix that shall be allowed on SDC.
-definedResourceNamespace:
- - org.openecomp.resource.
-
-# This configuration entry lists all Directives values that shall be allowed on SDC.
-directives:
- - select
- - selectable
- - substitute
- - substitutable
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-distribution-engine-configuration.yaml.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-distribution-engine-configuration.yaml.erb
deleted file mode 100644
index 0fa6936f74..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-distribution-engine-configuration.yaml.erb
+++ /dev/null
@@ -1,82 +0,0 @@
-uebServers:
- <% node['UEB']['fqdn'].each do |conn| -%>
- - <%= conn %>
- <% end -%>
-
-uebPublicKey: <%= node['UEB']['PublicKey'] %>
-uebSecretKey: <%= node['UEB']['SecretKey'] %>
-
-distributionNotifTopicName: SDC-DISTR-NOTIF-TOPIC
-distributionStatusTopicName: SDC-DISTR-STATUS-TOPIC
-
-initRetryIntervalSec: 5
-initMaxIntervalSec: 60
-
-distribNotifServiceArtifactTypes:
- info:
- - MURANO-PKG
-
-distribNotifResourceArtifactTypes:
- lifecycle:
- - HEAT
- - DG-XML
-
-environments:
- - <%= node.chef_environment %>
-
-distributionStatusTopic:
- pollingIntervalSec: 60
- fetchTimeSec: 15
- consumerGroup: sdc-<%= node.chef_environment %>
- consumerId: sdc-<%= node.chef_environment %>1
-
-
-distributionNotificationTopic:
- minThreadPoolSize: 0
- maxThreadPoolSize: 10
- maxWaitingAfterSendingSeconds: 5
-
-createTopic:
- partitionCount: 1
- replicationCount: 1
-
-startDistributionEngine: true
-
-#This is false by default, since ONAP Dmaap currently doesn't support https
-useHttpsWithDmaap: false
-opEnvRecoveryIntervalSec: 180
-allowedTimeBeforeStaleSec: 300
-
-aaiConfig:
- httpRequestConfig:
- serverRootUrl: https://localhost:8443
- resourceNamespaces:
- operationalEnvironments: /aai/v12/cloud-infrastructure/operational-environments
-
- httpClientConfig:
- timeouts:
- readTimeoutMs: 5000
- connectTimeoutMs: 1000
- clientCertificate:
- keyStore: /var/lib/jetty/base/be/etc/non-prod.jks
- keyStorePassword: hmXYcznAljMSisdy8zgcag==
- headers:
- X-FromAppId: asdc
- numOfRetries: 3
-
-msoConfig:
- httpRequestConfig:
- serverRootUrl: http://127.0.0.1:8080/onap/mso/infra/modelDistributions/v1
- resourceNamespaces:
- distributions: /distributions
-
- httpClientConfig:
- timeouts:
- readTimeoutMs: 2000
- connectTimeoutMs: 500
- basicAuthorization:
- userName: asdc
- password: OTLEp5lfVhYdyw5EAtTUBQ==
- numOfRetries: 3
-
-currentArtifactInstallationTimeout: 120
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-janusgraph.properties.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-janusgraph.properties.erb
deleted file mode 100644
index 0a9dd073c0..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-janusgraph.properties.erb
+++ /dev/null
@@ -1,27 +0,0 @@
-storage.backend=cql
-storage.hostname=<%= @cassandra_ip %>
-storage.port=<%= @cassandra_cql_port %>
-storage.username=<%= @cassandra_usr %>
-storage.password=<%= @cassandra_pwd %>
-storage.connection-timeout=<%= @janus_connection_timeout %>
-storage.cql.keyspace=sdctitan
-
-storage.cql.ssl.enabled=<%= @cassandra_ssl_enabled %>
-storage.cql.ssl.truststore.location=<%= @cassandra_truststore_path %>
-storage.cql.ssl.truststore.password=<%= @cassandra_truststore_password %>
-
-storage.cql.read-consistency-level=LOCAL_QUORUM
-storage.cql.write-consistency-level=LOCAL_QUORUM
-storage.cql.replication-strategy-class=NetworkTopologyStrategy
-storage.cql.replication-strategy-options=<%= @DC_NAME_WITH_REP %>
-storage.cql.local-datacenter=<%= @DC_NAME %>
-
-
-cache.db-cache = false
-cache.db-cache-clean-wait = 20
-cache.db-cache-time = 180000
-cache.db-cache-size = 0.5
-
-cache.tx-cache-size = 1000000
-
-storage.lock.retries=5 \ No newline at end of file
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-key.properties.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-key.properties.erb
deleted file mode 100644
index 007a36e350..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-key.properties.erb
+++ /dev/null
@@ -1,41 +0,0 @@
-###
-# ============LICENSE_START==========================================
-# ONAP Portal SDK
-# ===================================================================
-# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
-# ===================================================================
-#
-# Unless otherwise specified, all software contained herein is licensed
-# under the Apache License, Version 2.0 (the “License”);
-# you may not use this software except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# Unless otherwise specified, all documentation contained herein is licensed
-# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
-# you may not use this documentation except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://creativecommons.org/licenses/by/4.0/
-#
-# Unless required by applicable law or agreed to in writing, documentation
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# ============LICENSE_END============================================
-#
-#
-###
-
-# Properties read by the ECOMP Framework library (epsdk-fw)
-
-cipher.enc.key = <%= @cipher_key %> \ No newline at end of file
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-onboarding-configuration.yaml.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-onboarding-configuration.yaml.erb
deleted file mode 100644
index 4646661dfb..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-onboarding-configuration.yaml.erb
+++ /dev/null
@@ -1,5 +0,0 @@
-notifications:
- pollingIntervalMsec: 2000
- selectionSize: 100
- beHost: <%= @catalog_ip %>
- beHttpPort: <%= @catalog_port %> \ No newline at end of file
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-portal.properties.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-portal.properties.erb
deleted file mode 100644
index 159a6cce15..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/BE-portal.properties.erb
+++ /dev/null
@@ -1,89 +0,0 @@
-###
-# ============LICENSE_START==========================================
-# ONAP Portal SDK
-# ===================================================================
-# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
-# ===================================================================
-#
-# Unless otherwise specified, all software contained herein is licensed
-# under the Apache License, Version 2.0 (the “License”);
-# you may not use this software except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# Unless otherwise specified, all documentation contained herein is licensed
-# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
-# you may not use this documentation except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://creativecommons.org/licenses/by/4.0/
-#
-# Unless required by applicable law or agreed to in writing, documentation
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# ============LICENSE_END============================================
-#
-#
-###
-# Properties read by ECOMP Framework library, ecompFW.jar
-
-##########################################################################
-# The following properties should NOT be changed by partner applications.
-##########################################################################
-
-portal.api.prefix = /api
-max.idle.time = 5
-user.attribute.name = user_attribute
-
-#Use REST API instead of UEB to fetch the functional menu data
-use_rest_for_functional_menu=true
-
-
-##########################################################################
-# The following properties MUST be changed by partner applications.
-##########################################################################
-
-# Name of java class that implements the OnBoardingApiService interface.
-portal.api.impl.class = org.openecomp.sdc.be.ecomp.PortalRestApiCentralServiceImpl
-role_access_centralized = remote
-
-# Cookie set by CSP-SSO
-#csp_cookie_name = onapCsp
-
-# CSP setting, most use PROD; DEV also recognized
-csp_gate_keeper_prod_key = PROD
-
-# URL of the Portal where this app is onboarded
-ecomp_redirect_url = <%= @ecomp_redirect_url %>
-
-# URL of the ECOMP Portal REST API
-ecomp_rest_url = <%= @ecomp_rest_url %>
-
-# Connection and Read timeout values
-ext_req_connection_timeout = 15000
-ext_req_read_timeout = 20000
-
-# Name of java class that implements the OnBoardingApiService interface.
-portal.api.impl.class = org.openecomp.sdc.be.ecomp.PortalRestApiCentralServiceImpl
-
-#Portal user & key
-portal_app_name = <%= @portal_app_name %>
-portal_pass = <%= @ecomp_portal_pass %>
-portal_user = <%= @ecomp_portal_user %>
-
-
-# UEB key generated while on-boarding
-ueb_app_key = ""
-
-# Applications do not need to run a UEB listener after 1607.
-ueb_listeners_enable = false
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/cadi.properties.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/cadi.properties.erb
deleted file mode 100644
index 66654310e0..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/cadi.properties.erb
+++ /dev/null
@@ -1,54 +0,0 @@
-# Configure AAF
-aaf_locate_url=<%= node['access_restriction']['aaf_locate_url'] %>
-
-aaf_url=<%= node['access_restriction']['aaf_url'] %>
-
-#if you are running aaf service from a docker image you have to use aaf service IP and port number
-aaf_id=<%= node['access_restriction']['aaf_id'] %>
-#Encrypt the password using AAF Jar
-aaf_password=<%= node['access_restriction']['aaf_password'] %>
-# Sample CADI Properties, from CADI 1.4.2
-hostname=<%= node['BE_VIP'] %>
-csp_domain=<%= node['access_restriction']['csp_domain'] %>
-
-# Add Absolute path to Keyfile
-cadi_keyfile=<%= node['access_restriction']['cadi_keyfile'] %>
-
-
-# This is required to accept Certificate Authentication from Certman certificates.
-# can be TEST, IST or PROD
-aaf_env=<%= node['access_restriction']['aaf_env'] %>
-
-# DEBUG prints off all the properties. Use to get started.
-cadi_loglevel=<%= node['access_restriction']['cadi_loglevel'] %>
-
-
-# Become CSO Poodle Compliant by only allowing sanctioned TLS versions
-# The following is the default
-# cadi_protocols=TLSv1.1,TLSv1.2
-
-# Default TrustStore - REQUIRED for changing PROTOCOL Defaults for DME2
-# Read https://wiki.web.att.com/pages/viewpage.action?pageId=574623569#URGENT:SolvingSSL2-3/TLSv1removalissues-Up-to-dateTruststore
-# Add Absolute path to truststore2020.jks
-cadi_truststore=<%= node['access_restriction']['cadi_truststore'] %>
-# Note: This is the ONLY password that doesn't have to be encrypted. All Java's TrustStores are this passcode by default, because they are public certs
-cadi_truststore_password=<%= node['access_restriction']['cadi_truststore_password'] %>
-
-# how to turn on SSL Logging
-#javax.net.debug=ssl
-
-##
-# Hint
-# Use "maps.bing.com" to get Lat and Long for an Address
-AFT_LATITUDE=32.780140
-AFT_LONGITUDE=-96.800451
-AFT_ENVIRONMENT=<%= node['access_restriction']['AFT_ENVIRONMENT'] %>
-AFT_DME2_CLIENT_IGNORE_SSL_CONFIG=<%= node['access_restriction']['AFT_DME2_CLIENT_IGNORE_SSL_CONFIG'] %>
-DME2.DEBUG=true
-AFT_DME2_HTTP_EXCHANGE_TRACE_ON=<%= node['access_restriction']['AFT_DME2_HTTP_EXCHANGE_TRACE_ON'] %>
-
-cadi_latitude=32.780140
-cadi_longitude=-96.800451
-
-aaf_root_ns=<%= node['aafNamespace'] %>
-aaf_api_version=2.0
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/http-ini.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/http-ini.erb
deleted file mode 100644
index 8f2669032b..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/http-ini.erb
+++ /dev/null
@@ -1,29 +0,0 @@
-# ---------------------------------------
-# Module: http
-<%= @http_option %>
-
-### HTTP Connector Configuration
-
-## Connector host/address to bind to
-# jetty.http.host=0.0.0.0
-
-## Connector port to listen on
-jetty.http.port=<%= @http_port %>
-
-## Connector idle timeout in milliseconds
-jetty.http.idleTimeout=30000
-
-## Connector socket linger time in seconds (-1 to disable)
-# jetty.http.soLingerTime=-1
-
-## Number of acceptors (-1 picks default based on number of cores)
-# jetty.http.acceptors=-1
-
-## Number of selectors (-1 picks default based on number of cores)
-# jetty.http.selectors=-1
-
-## ServerSocketChannel backlog (0 picks platform default)
-# jetty.http.acceptorQueueSize=0
-
-## Thread priority delta to give to acceptor threads
-# jetty.http.acceptorPriorityDelta=0
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/https-ini.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/https-ini.erb
deleted file mode 100644
index 9999a4109b..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/https-ini.erb
+++ /dev/null
@@ -1,29 +0,0 @@
-# ---------------------------------------
-# Module: https
---module=https
-
-### HTTPS Connector Configuration
-
-## Connector host/address to bind to
-# jetty.https.host=0.0.0.0
-
-## Connector port to listen on
-jetty.https.port=<%= @https_port %>
-
-## Connector idle timeout in milliseconds
-jetty.https.idleTimeout=30000
-
-## Connector socket linger time in seconds (-1 to disable)
-# jetty.https.soLingerTime=-1
-
-## Number of acceptors (-1 picks default based on number of cores)
-# jetty.https.acceptors=-1
-
-## Number of selectors (-1 picks default based on number of cores)
-# jetty.https.selectors=-1
-
-## ServerSocketChannel backlog (0 picks platform default)
-# jetty.https.acceptorQueueSize=0
-
-## Thread priority delta to give to acceptor threads
-# jetty.https.acceptorPriorityDelta=0
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb
deleted file mode 100644
index 9f6646d63d..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-health_check_http_code=$(curl -k --max-time 5 -o /dev/null -w '%{http_code}' <%= @protocol %>://127.0.0.1:<%= @port %>/sdc2/rest/healthCheck)
-
-if [[ "$health_check_http_code" -eq 200 ]]; then
- exit 0
-else
- echo "Health check http status: $health_check_http_code"
- exit 1
-fi
diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ssl-ini.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ssl-ini.erb
deleted file mode 100644
index 278fdea2ae..0000000000
--- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ssl-ini.erb
+++ /dev/null
@@ -1,90 +0,0 @@
-# ---------------------------------------
-# Module: ssl
---module=ssl
-
-### TLS(SSL) Connector Configuration
-
-## Connector host/address to bind to
-# jetty.ssl.host=0.0.0.0
-
-## Connector port to listen on
-jetty.ssl.port=<%= @https_port %>
-
-## Connector idle timeout in milliseconds
-# jetty.ssl.idleTimeout=30000
-
-## Connector socket linger time in seconds (-1 to disable)
-# jetty.ssl.soLingerTime=-1
-
-## Number of acceptors (-1 picks default based on number of cores)
-# jetty.ssl.acceptors=-1
-
-## Number of selectors (-1 picks default based on number of cores)
-# jetty.ssl.selectors=-1
-
-## ServerSocketChannel backlog (0 picks platform default)
-# jetty.ssl.acceptorQueueSize=0
-
-## Thread priority delta to give to acceptor threads
-# jetty.ssl.acceptorPriorityDelta=0
-
-## Whether request host names are checked to match any SNI names
-# jetty.ssl.sniHostCheck=true
-
-## max age in seconds for a Strict-Transport-Security response header (default -1)
-# jetty.ssl.stsMaxAgeSeconds=31536000
-
-## include subdomain property in any Strict-Transport-Security header (default false)
-# jetty.ssl.stsIncludeSubdomains=true
-
-### SslContextFactory Configuration
-## Note that OBF passwords are not secure, just protected from casual observation
-## See http://www.eclipse.org/jetty/documentation/current/configuring-security-secure-passwords.html
-
-## Keystore file path (relative to $jetty.base)
-jetty.sslContext.keyStorePath=etc/org.onap.sdc.p12
-
-## Truststore file path (relative to $jetty.base)
-jetty.sslContext.trustStorePath=etc/org.onap.sdc.trust.jks
-
-## Keystore password
-# jetty.sslContext.keyStorePassword=OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4
-jetty.sslContext.keyStorePassword=<%= @jetty_keystore_pwd %>
-
-## Keystore type and provider
-# jetty.sslContext.keyStoreType=JKS
-# jetty.sslContext.keyStoreProvider=
-
-## KeyManager password
-# jetty.sslContext.keyManagerPassword=OBF:1u2u1wml1z7s1z7a1wnl1u2g
-jetty.sslContext.keyManagerPassword=<%= @jetty_keymanager_pwd %>
-
-## Truststore password
-# jetty.sslContext.trustStorePassword=OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4
-jetty.sslContext.trustStorePassword=<%= @jetty_truststore_pwd %>
-
-## Truststore type and provider
-# jetty.sslContext.trustStoreType=JKS
-# jetty.sslContext.trustStoreProvider=
-
-## whether client certificate authentication is required
-# jetty.sslContext.needClientAuth=false
-
-## Whether client certificate authentication is desired
-# jetty.sslContext.wantClientAuth=false
-
-## Whether cipher order is significant (since java 8 only)
-# jetty.sslContext.useCipherSuitesOrder=true
-
-## To configure Includes / Excludes for Cipher Suites or Protocols see tweak-ssl.xml example at
-## https://www.eclipse.org/jetty/documentation/current/configuring-ssl.html#configuring-sslcontextfactory-cipherSuites
-
-## Set the size of the SslSession cache
-# jetty.sslContext.sslSessionCacheSize=-1
-
-## Set the timeout (in seconds) of the SslSession cache timeout
-# jetty.sslContext.sslSessionTimeout=-1
-
-## Allow SSL renegotiation
-# jetty.sslContext.renegotiationAllowed=true
-# jetty.sslContext.renegotiationLimit=5
diff --git a/catalog-be/sdc-backend/chef-solo/LICENSE b/catalog-be/sdc-backend/chef-solo/LICENSE
deleted file mode 100644
index 11069edd79..0000000000
--- a/catalog-be/sdc-backend/chef-solo/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
-Copyright [yyyy] [name of copyright owner]
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/catalog-be/sdc-backend/chef-solo/README.md b/catalog-be/sdc-backend/chef-solo/README.md
deleted file mode 100644
index ddb0fda830..0000000000
--- a/catalog-be/sdc-backend/chef-solo/README.md
+++ /dev/null
@@ -1,37 +0,0 @@
-Deprecated
-==========
-
-Use of this repository is deprecated. We recommend using the `chef generate repo` command that comes with [ChefDK](http://downloads.chef.io/chef-dk/).
-
-Overview
-========
-
-Every Chef installation needs a Chef Repository. This is the place where cookbooks, roles, config files and other artifacts for managing systems with Chef will live. We strongly recommend storing this repository in a version control system such as Git and treat it like source code.
-
-While we prefer Git, and make this repository available via GitHub, you are welcome to download a tar or zip archive and use your favorite version control system to manage the code.
-
-Repository Directories
-======================
-
-This repository contains several directories, and each directory contains a README file that describes what it is for in greater detail, and how to use it for managing your systems with Chef.
-
-* `cookbooks/` - Cookbooks you download or create.
-* `data_bags/` - Store data bags and items in .json in the repository.
-* `roles/` - Store roles in .rb or .json in the repository.
-* `environments/` - Store environments in .rb or .json in the repository.
-
-Configuration
-=============
-
-The repository contains a knife configuration file.
-
-* .chef/knife.rb
-
-The knife configuration file `.chef/knife.rb` is a repository specific configuration file for knife. If you're using Hosted Chef, you can download one for your organization from the management console. If you're using the Open Source Chef Server, you can generate a new one with `knife configure`. For more information about configuring Knife, see the Knife documentation.
-
-https://docs.chef.io/knife.html
-
-Next Steps
-==========
-
-Read the README file in each of the subdirectories for more information about what goes in those directories.
diff --git a/catalog-be/sdc-backend/chef-solo/chefignore b/catalog-be/sdc-backend/chef-solo/chefignore
deleted file mode 100644
index ba30af6cff..0000000000
--- a/catalog-be/sdc-backend/chef-solo/chefignore
+++ /dev/null
@@ -1,11 +0,0 @@
-# Put files/directories that should be ignored in this file.
-# Lines that start with '# ' are comments.
-
-# emacs
-*~
-
-# vim
-*.sw[a-z]
-
-# subversion
-*/.svn/*
diff --git a/catalog-be/sdc-backend/chef-solo/cookbooks/README.md b/catalog-be/sdc-backend/chef-solo/cookbooks/README.md
deleted file mode 100644
index 86ea46bfbb..0000000000
--- a/catalog-be/sdc-backend/chef-solo/cookbooks/README.md
+++ /dev/null
@@ -1,54 +0,0 @@
-This directory contains the cookbooks used to configure systems in your infrastructure with Chef.
-
-Knife needs to be configured to know where the cookbooks are located with the `cookbook_path` setting. If this is not set, then several cookbook operations will fail to work properly.
-
- cookbook_path ["./cookbooks"]
-
-This setting tells knife to look for the cookbooks directory in the present working directory. This means the knife cookbook subcommands need to be run in the `chef-repo` directory itself. To make sure that the cookbooks can be found elsewhere inside the repository, use an absolute path. This is a Ruby file, so something like the following can be used:
-
- current_dir = File.dirname(__FILE__)
- cookbook_path ["#{current_dir}/../cookbooks"]
-
-Which will set `current_dir` to the location of the knife.rb file itself (e.g. `~/chef-repo/.chef/knife.rb`).
-
-Configure knife to use your preferred copyright holder, email contact and license. Add the following lines to `.chef/knife.rb`.
-
- cookbook_copyright "Example, Com."
- cookbook_email "cookbooks@example.com"
- cookbook_license "apachev2"
-
-Supported values for `cookbook_license` are "apachev2", "mit","gplv2","gplv3", or "none". These settings are used to prefill comments in the default recipe, and the corresponding values in the metadata.rb. You are free to change the the comments in those files.
-
-Create new cookbooks in this directory with Knife.
-
- knife cookbook create COOKBOOK
-
-This will create all the cookbook directory components. You don't need to use them all, and can delete the ones you don't need. It also creates a README file, metadata.rb and default recipe.
-
-You can also download cookbooks directly from the Opscode Cookbook Site. There are two subcommands to help with this depending on what your preference is.
-
-The first and recommended method is to use a vendor branch if you're using Git. This is automatically handled with Knife.
-
- knife cookbook site install COOKBOOK
-
-This will:
-
-* Download the cookbook tarball from cookbooks.opscode.com.
-* Ensure its on the git master branch.
-* Checks for an existing vendor branch, and creates if it doesn't.
-* Checks out the vendor branch (chef-vendor-COOKBOOK).
-* Removes the existing (old) version.
-* Untars the cookbook tarball it downloaded in the first step.
-* Adds the cookbook files to the git index and commits.
-* Creates a tag for the version downloaded.
-* Checks out the master branch again.
-* Merges the cookbook into master.
-* Repeats the above for all the cookbooks dependencies, downloading them from the community site
-
-The last step will ensure that any local changes or modifications you have made to the cookbook are preserved, so you can keep your changes through upstream updates.
-
-If you're not using Git, use the site download subcommand to download the tarball.
-
- knife cookbook site download COOKBOOK
-
-This creates the COOKBOOK.tar.gz from in the current directory (e.g., `~/chef-repo`). We recommend following a workflow similar to the above for your version control tool.
diff --git a/catalog-be/sdc-backend/chef-solo/data_bags/README.md b/catalog-be/sdc-backend/chef-solo/data_bags/README.md
deleted file mode 100644
index 0c15a391fa..0000000000
--- a/catalog-be/sdc-backend/chef-solo/data_bags/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-Data Bags
----------
-
-This directory contains directories of the various data bags you create for your infrastructure. Each subdirectory corresponds to a data bag on the Chef Server, and contains JSON files of the items that go in the bag.
-
-First, create a directory for the data bag.
-
- mkdir data_bags/BAG
-
-Then create the JSON files for items that will go into that bag.
-
- $EDITOR data_bags/BAG/ITEM.json
-
-The JSON for the ITEM must contain a key named "id" with a value equal to "ITEM". For example,
-
- {
- "id": "foo"
- }
-
-Next, create the data bag on the Chef Server.
-
- knife data bag create BAG
-
-Then upload the items in the data bag's directory to the Chef Server.
-
- knife data bag from file BAG ITEM.json
-
-
-Encrypted Data Bags
--------------------
-
-Added in Chef 0.10, encrypted data bags allow you to encrypt the contents of your data bags. The content of attributes will no longer be searchable. To use encrypted data bags, first you must have or create a secret key.
-
- openssl rand -base64 512 > secret_key
-
-You may use this secret_key to add items to a data bag during a create.
-
- knife data bag create --secret-file secret_key passwords mysql
-
-You may also use it when adding ITEMs from files,
-
- knife data bag create passwords
- knife data bag from file passwords data_bags/passwords/mysql.json --secret-file secret_key
-
-The JSON for the ITEM must contain a key named "id" with a value equal to "ITEM" and the contents will be encrypted when uploaded. For example,
-
- {
- "id": "mysql",
- "password": "abc123"
- }
-
-Without the secret_key, the contents are encrypted.
-
- knife data bag show passwords mysql
- id: mysql
- password: 2I0XUUve1TXEojEyeGsjhw==
-
-Use the secret_key to view the contents.
-
- knife data bag show passwords mysql --secret-file secret_key
- id: mysql
- password: abc123
-
diff --git a/catalog-be/sdc-backend/chef-solo/environments/README.md b/catalog-be/sdc-backend/chef-solo/environments/README.md
deleted file mode 100644
index 50ac48db2b..0000000000
--- a/catalog-be/sdc-backend/chef-solo/environments/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-Requires Chef 0.10.0+.
-
-This directory is for Ruby DSL and JSON files for environments. For more information see the Chef wiki page:
-
-http://docs.chef.io/environments.html
diff --git a/catalog-be/sdc-backend/chef-solo/roles/README.md b/catalog-be/sdc-backend/chef-solo/roles/README.md
deleted file mode 100644
index b0ee0b4d21..0000000000
--- a/catalog-be/sdc-backend/chef-solo/roles/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-Create roles here, in either the Role Ruby DSL (.rb) or JSON (.json) files. To install roles on the server, use knife.
-
-For example, create `roles/base_example.rb`:
-
- name "base_example"
- description "Example base role applied to all nodes."
- # List of recipes and roles to apply. Requires Chef 0.8, earlier versions use 'recipes()'.
- #run_list()
- # Attributes applied if the node doesn't have it set already.
- #default_attributes()
- # Attributes applied no matter what the node has set already.
- #override_attributes()
-
-Then upload it to the Chef Server:
-
- knife role from file roles/base_example.rb
diff --git a/catalog-be/sdc-backend/chef-solo/roles/catalog-be.json b/catalog-be/sdc-backend/chef-solo/roles/catalog-be.json
deleted file mode 100644
index 01ce87f239..0000000000
--- a/catalog-be/sdc-backend/chef-solo/roles/catalog-be.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "name": "catalog-be",
- "description": "Installation application - catalogBE",
- "json_class": "Chef::Role",
- "default_attributes": {
-
- },
- "override_attributes": {
-
- },
- "chef_type": "role",
- "run_list": [
- "recipe[sdc-catalog-be::BE_1_cleanup_jettydir]",
- "recipe[sdc-catalog-be::BE_2_setup_configuration]",
- "recipe[sdc-catalog-be::BE_3_locate_keystore]",
- "recipe[sdc-catalog-be::BE_4_jetty_Modules]",
- "recipe[sdc-catalog-be::BE_6_setup_portal_and_key_properties]",
- "recipe[sdc-catalog-be::BE_7_logback]",
- "recipe[sdc-catalog-be::BE_8_errors_config]",
- "recipe[sdc-catalog-be::BE_9_prepareProbeFile]",
- "recipe[sdc-catalog-be::BE_10_setup_cadi]"
- ],
- "env_run_lists": {
- }
-}
-
diff --git a/catalog-be/sdc-backend/chef-solo/solo.json b/catalog-be/sdc-backend/chef-solo/solo.json
deleted file mode 100644
index ce096b3931..0000000000
--- a/catalog-be/sdc-backend/chef-solo/solo.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "run_list": [ "role[catalog-be]" ]
-}
-
diff --git a/catalog-be/sdc-backend/chef-solo/solo.rb b/catalog-be/sdc-backend/chef-solo/solo.rb
deleted file mode 100644
index 06c1af4592..0000000000
--- a/catalog-be/sdc-backend/chef-solo/solo.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-root = File.absolute_path(File.dirname(__FILE__))
-file_cache_path root
-cookbook_path root + '/cookbooks'
-json_attribs root + '/solo.json'
-checksum_path root + '/checksums'
-data_bag_path root + '/data_bags'
-environment_path root + '/environments'
-file_backup_path root + '/backup'
-file_cache_path root + '/cache'
-log_level :info
-log_location STDOUT
-rest_timeout 300
-role_path root + '/roles'
-syntax_check_cache_path
-umask 0022
-verbose_logging nil
diff --git a/catalog-be/sdc-backend/context.xml.template b/catalog-be/sdc-backend/context.xml.template
deleted file mode 100644
index 1f1741f241..0000000000
--- a/catalog-be/sdc-backend/context.xml.template
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE Configure PUBLIC
- "-//Mort Bay Consulting//DTD Configure//EN"
- "http://www.eclipse.org/jetty/configure_9_0.dtd">
-
-<Configure class="org.eclipse.jetty.webapp.WebAppContext">
- <Set name="contextPath">/</Set>
- <Set name="war">
- <SystemProperty name="jetty.base"/>/webappwar/catalog-be-projectversion.war
- </Set>
- <Set name="extraClasspath">
- <SystemProperty name="jetty.base"/>/plugins/*
- </Set>
-</Configure>
diff --git a/catalog-be/sdc-backend/startup.sh b/catalog-be/sdc-backend/startup.sh
deleted file mode 100644
index 0dc54a8849..0000000000
--- a/catalog-be/sdc-backend/startup.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-export JAVA_OPTIONS=" -Dconfig.home=${JETTY_BASE}/config \
- -Dlog.home=${JETTY_BASE}/logs \
- -Dlogback.configurationFile=${JETTY_BASE}/config/catalog-be/logback.xml \
- -Dconfiguration.yaml=${JETTY_BASE}/config/catalog-be/configuration.yaml \
- -Dartifactgenerator.config=${JETTY_BASE}/config/catalog-be/Artifact-Generator.properties \
- -Donboarding_configuration.yaml=${JETTY_BASE}/config/onboarding-be/onboarding_configuration.yaml \
- -Djavax.net.ssl.trustStore=${JETTY_BASE}/etc/org.onap.sdc.trust.jks \
- -Djavax.net.ssl.trustStorePassword=z+KEj;t+,KN^iimSiS89e#p0 \
- -Djetty.console-capture.dir=${JETTY_BASE}/logs \
- ${JAVA_OPTIONS} "
-
-cd /var/lib/jetty/chef-solo
-chef-solo -c solo.rb -E ${ENVNAME}
-
-status=$?
-if [ $status -ne 0 ]; then
- echo "[ERROR] Problem detected while running chef. Aborting !"
- exit 1
-fi
-
-# Execute Jetty
-cd /var/lib/jetty
-
-java $JAVA_OPTIONS -jar "$JETTY_HOME/start.jar"
-
-
-
-