Revision c3fb60d13a7b823430c5256f12ca7f445a7ba60a authored by Tim Vernum on 14 May 2021, 14:02:40 UTC, committed by GitHub on 14 May 2021, 14:02:40 UTC
The Node Enrollment API requires the use of a KeyStore, but neither
PKCS#12 nor JKS keystores are supported when running in FIPS mode.

For this reason, the Enrollment APIs are not supported on FIPS mode,
and we therefore shouldn't run the tests under FIPS either.

Resolves: #73012
1 parent ebb113a
Raw File
build.gradle
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */
apply plugin: 'elasticsearch.yaml-rest-test'
apply plugin: 'elasticsearch.yaml-rest-compat-test'
apply plugin: 'elasticsearch.internal-cluster-test'

esplugin {
  description 'The Rank Eval module adds APIs to evaluate ranking quality.'
  classname 'org.elasticsearch.index.rankeval.RankEvalPlugin'
}

restResources {
  restApi {
    include '_common', 'indices', 'index', 'rank_eval'
  }
}

testClusters.all {
  // Modules who's integration is explicitly tested in integration tests
  module ':modules:lang-mustache'
}
back to top