Disable deprecation log indexing in docker test (#85150)

Deprecation log indexing can make test very fragile
and randomly failing during cluster cleanup.
This commit disables indexing of deprecation logs for :distribution:docker tests

closes #79803
This commit is contained in:
Przemyslaw Gomulka 2022-03-21 12:05:49 +01:00 committed by GitHub
parent 3d3eb31637
commit 4958642404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@ services:
- xpack.security.transport.ssl.verification_mode=certificate
- xpack.license.self_generated.type=trial
- action.destructive_requires_name=false
- cluster.deprecation_indexing.enabled=false
volumes:
- ./testfixtures_shared/repo:/tmp/es-repo
- ./build/certs/testnode.pem:/usr/share/elasticsearch/config/testnode.pem
@ -85,6 +86,7 @@ services:
- xpack.security.transport.ssl.verification_mode=certificate
- xpack.license.self_generated.type=trial
- action.destructive_requires_name=false
- cluster.deprecation_indexing.enabled=false
volumes:
- ./testfixtures_shared/repo:/tmp/es-repo
- ./build/certs/testnode.pem:/usr/share/elasticsearch/config/testnode.pem