Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[testing only] Test kibana 7.17 against ES 8.0 #122998

Closed
wants to merge 15 commits into from
3 changes: 3 additions & 0 deletions .buildkite/pipelines/pull_request/base.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
env:
ES_SNAPSHOT_MANIFEST: https://storage.googleapis.com/kibana-ci-es-snapshots-daily/8.0.0/manifest-latest-verified.json

steps:
- command: .buildkite/scripts/lifecycle/pre_build.sh
label: Pre-Build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ describe('esArchiver: createCreateIndexStream()', () => {

sinon.assert.calledWith(client.indices.create as sinon.SinonSpy, {
index: 'index',
include_type_name: false,
body: {
settings: undefined,
mappings: undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ export function createCreateIndexStream({

async function handleIndex(record: DocRecord) {
const { index, settings, mappings, aliases } = record.value;

// Determine if the mapping belongs to a pre-7.0 instance, for BWC tests, mainly
const isPre7Mapping = !!mappings && Object.keys(mappings).length > 0 && !mappings.properties;
const isKibanaTaskManager = index.startsWith('.kibana_task_manager');
const isKibana = index.startsWith('.kibana') && !isKibanaTaskManager;

Expand All @@ -79,7 +76,6 @@ export function createCreateIndexStream({
await client.indices.create(
{
index,
include_type_name: isPre7Mapping,
body: {
settings,
mappings,
Expand Down
Binary file not shown.
Loading