From 2a6b3962c617ac2f7dbcb29105955b5f8b2c6060 Mon Sep 17 00:00:00 2001 From: mayankg2703 Date: Tue, 6 Feb 2018 10:24:30 +0000 Subject: config seg aai search data service Change-Id: Ie0229756fabb37a88f46c3d6eb864531660885a8 Issue-ID: OOM-663 Signed-off-by: mayankg2703 --- .../appconfig/analysis-config.json | 32 +++++++++++++++++++++ .../appconfig/auth/search_policy.json | 18 ++++++++++++ .../appconfig/auth/tomcat_keystore | Bin 0 -> 2214 bytes .../appconfig/elastic-search.properties | 5 ++++ .../appconfig/filter-config.json | 7 +++++ 5 files changed, 62 insertions(+) create mode 100644 resources/config/search-data-service/appconfig/analysis-config.json create mode 100644 resources/config/search-data-service/appconfig/auth/search_policy.json create mode 100644 resources/config/search-data-service/appconfig/auth/tomcat_keystore create mode 100644 resources/config/search-data-service/appconfig/elastic-search.properties create mode 100644 resources/config/search-data-service/appconfig/filter-config.json (limited to 'resources') diff --git a/resources/config/search-data-service/appconfig/analysis-config.json b/resources/config/search-data-service/appconfig/analysis-config.json new file mode 100644 index 0000000..f98ea37 --- /dev/null +++ b/resources/config/search-data-service/appconfig/analysis-config.json @@ -0,0 +1,32 @@ +[ + { + "name": "whitespace_analyzer", + "description": "A standard whitespace analyzer.", + "behaviours": [ + "Tokenize the text using white space characters as delimeters.", + "Convert all characters to lower case.", + "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents." + ], + "tokenizer": "whitespace", + "filters": [ + "lowercase", + "asciifolding" + ] + }, + { + "name": "ngram_analyzer", + "description": "An analyzer which performs ngram filtering on the data stream.", + "behaviours": [ + "Tokenize the text using white space characters as delimeters.", + "Convert all characters to lower case.", + "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents.", + "Apply ngram filtering using the following values for minimum and maximum size in codepoints of a single n-gram: minimum = 1, maximum = 2." + ], + "tokenizer": "whitespace", + "filters": [ + "lowercase", + "asciifolding", + "ngram_filter" + ] + } +] \ No newline at end of file diff --git a/resources/config/search-data-service/appconfig/auth/search_policy.json b/resources/config/search-data-service/appconfig/auth/search_policy.json new file mode 100644 index 0000000..72d8902 --- /dev/null +++ b/resources/config/search-data-service/appconfig/auth/search_policy.json @@ -0,0 +1,18 @@ +{ + "roles": [ + { + "name": "admin", + "functions": [ + { + "name": "search", "methods": [ { "name": "GET" },{ "name": "DELETE" }, { "name": "PUT" }, { "name": "POST" } ] + } + ], + + "users": [ + { + "username": "CN=ONAP, OU=ONAP, O=ONAP, L=Ottawa, ST=Ontario, C=CA" + } + ] + } + ] +} diff --git a/resources/config/search-data-service/appconfig/auth/tomcat_keystore b/resources/config/search-data-service/appconfig/auth/tomcat_keystore new file mode 100644 index 0000000..9eec841 Binary files /dev/null and b/resources/config/search-data-service/appconfig/auth/tomcat_keystore differ diff --git a/resources/config/search-data-service/appconfig/elastic-search.properties b/resources/config/search-data-service/appconfig/elastic-search.properties new file mode 100644 index 0000000..006fc6e --- /dev/null +++ b/resources/config/search-data-service/appconfig/elastic-search.properties @@ -0,0 +1,5 @@ +# ElasticSearch Configuration + +es.cluster-name=ES_AAI +es.ip-address=elasticsearch.onap-aai +es.http-port=9200 diff --git a/resources/config/search-data-service/appconfig/filter-config.json b/resources/config/search-data-service/appconfig/filter-config.json new file mode 100644 index 0000000..e2d5285 --- /dev/null +++ b/resources/config/search-data-service/appconfig/filter-config.json @@ -0,0 +1,7 @@ +[ + { + "name": "ngram_filter", + "description": "Custom NGram Filter.", + "configuration": " \"type\": \"nGram\", \"min_gram\": 1, \"max_gram\": 50, \"token_chars\": [ \"letter\", \"digit\", \"punctuation\", \"symbol\" ]" + } +] \ No newline at end of file -- cgit 1.2.3-korg