AAI 1.1 search-data-service config 61/9461/5
authorMandeep Khinda <mandeep.khinda@amdocs.com>
Wed, 30 Aug 2017 14:37:47 +0000 (14:37 +0000)
committerMandeep Khinda <mandeep.khinda@amdocs.com>
Thu, 31 Aug 2017 23:16:45 +0000 (23:16 +0000)
Issue-ID: OOM-65

Change-Id: I1d7cde3b8eb231708ffa6e57fca645b4c71b5b2e
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Signed-off-by: yuryn <Yury.Novitsky@Amdocs.com>
Signed-off-by: ronakvy <ronak.vyas@amdocs.com>
kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/analysis-config.json [new file with mode: 0644]
kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/search_policy.json [new file with mode: 0644]
kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/tomcat_keystore [new file with mode: 0644]
kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/elastic-search.properties [new file with mode: 0644]
kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/filter-config.json [new file with mode: 0644]

diff --git a/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/analysis-config.json b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/analysis-config.json
new file mode 100644 (file)
index 0000000..f98ea37
--- /dev/null
@@ -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/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/search_policy.json b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/search_policy.json
new file mode 100644 (file)
index 0000000..72d8902
--- /dev/null
@@ -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/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/tomcat_keystore b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/tomcat_keystore
new file mode 100644 (file)
index 0000000..9eec841
Binary files /dev/null and b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/auth/tomcat_keystore differ
diff --git a/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/elastic-search.properties b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/elastic-search.properties
new file mode 100644 (file)
index 0000000..006fc6e
--- /dev/null
@@ -0,0 +1,5 @@
+# ElasticSearch Configuration
+
+es.cluster-name=ES_AAI
+es.ip-address=elasticsearch.onap-aai
+es.http-port=9200
diff --git a/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/filter-config.json b/kubernetes/config/docker/init/src/config/aai/search-data-service/appconfig/filter-config.json
new file mode 100644 (file)
index 0000000..e2d5285
--- /dev/null
@@ -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