Skip to content

Commit

Permalink
[ML] Enable all ES side ML features for the ES3 project type (elastic…
Browse files Browse the repository at this point in the history
…#168646)

The aim here is to enable the Elasticsearch APIs for all ML features in
the ES3 serverless project type, while still leaving the UI support for
anomaly detection and data frame analytics unavailable in this project
type.

Therefore, the only changes in this PR are to the ES config options
supplied during tests.

If we ever want to enable the UI support for anomaly detection and data
frame analytics in the ES3 project type then a followup PR will be
needed.
  • Loading branch information
droberts195 authored Oct 13, 2023
1 parent 2cbb98b commit 05975c8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export default createTestConfig({

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/esproject/config/elasticsearch.yml
esServerArgs: ['xpack.ml.ad.enabled=false', 'xpack.ml.dfa.enabled=false'],
esServerArgs: [],
});

0 comments on commit 05975c8

Please sign in to comment.