diff --git a/Jenkinsfile b/Jenkinsfile index 3b68cde206573..7fa056f5b10c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,7 @@ #!/bin/groovy +env.KBN_ES_SNAPSHOT_USE_UNVERIFIED = 'true' + library 'kibana-pipeline-library' kibanaLibrary.load() diff --git a/x-pack/test/functional/es_archives/logstash_functional/mappings.json b/x-pack/test/functional/es_archives/logstash_functional/mappings.json index ee7feedd77530..11e65aacb0118 100644 --- a/x-pack/test/functional/es_archives/logstash_functional/mappings.json +++ b/x-pack/test/functional/es_archives/logstash_functional/mappings.json @@ -342,11 +342,14 @@ } }, "type": "text" - }, + } + }, + "runtime": { "runtime_number": { - "type": "runtime", - "runtime_type" : "long", - "script" : { "source" : "emit(doc['bytes'].value)" } + "type": "long", + "script": { + "source": "emit(doc['bytes'].value)" + } } } }, @@ -712,11 +715,14 @@ } }, "type": "text" - }, + } + }, + "runtime": { "runtime_number": { - "type": "runtime", - "runtime_type" : "long", - "script" : { "source" : "emit(doc['bytes'].value)" } + "type": "long", + "script": { + "source": "emit(doc['bytes'].value)" + } } } }, @@ -1082,11 +1088,14 @@ } }, "type": "text" - }, + } + }, + "runtime": { "runtime_number": { - "type": "runtime", - "runtime_type" : "long", - "script" : { "source" : "emit(doc['bytes'].value)" } + "type": "long", + "script": { + "source": "emit(doc['bytes'].value)" + } } } }, diff --git a/x-pack/test/functional/es_archives/security/flstest/data/mappings.json b/x-pack/test/functional/es_archives/security/flstest/data/mappings.json index 3605533618a93..4900980c83d89 100644 --- a/x-pack/test/functional/es_archives/security/flstest/data/mappings.json +++ b/x-pack/test/functional/es_archives/security/flstest/data/mappings.json @@ -30,10 +30,11 @@ } }, "type": "text" - }, + } + }, + "runtime": { "runtime_customer_ssn": { - "type": "runtime", - "runtime_type": "keyword", + "type": "keyword", "script": { "source": "emit(doc['customer_ssn'].value + ' calculated at runtime')" }