mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
## Summary
Let's automate E2E against Serverless
Changelog:
- updated certs to include additional dns names we are using for testing
locally, `host.docker.internal`, `es01`
- updated certs generation README to include changes related to
`openssl@3`
- added new certs for Fleet server
- added fleet-server service token
- added support for `ca_trusted_fingerprint` in fleet preconfig

---------
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Tomasz Ciecierski <ciecierskitomek@gmail.com>
Co-authored-by: Tomasz Ciecierski <tomasz.ciecierski@elastic.co>
Co-authored-by: Kevin Logan <kevin.logan@elastic.co>
32 lines
927 B
TypeScript
32 lines
927 B
TypeScript
/*
|
|
* 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.
|
|
*/
|
|
|
|
export {
|
|
CA_CERT_PATH,
|
|
CA_TRUSTED_FINGERPRINT,
|
|
ES_KEY_PATH,
|
|
ES_CERT_PATH,
|
|
ES_P12_PATH,
|
|
ES_P12_PASSWORD,
|
|
ES_EMPTYPASSWORD_P12_PATH,
|
|
ES_NOPASSWORD_P12_PATH,
|
|
KBN_KEY_PATH,
|
|
KBN_CERT_PATH,
|
|
KBN_P12_PATH,
|
|
KBN_P12_PASSWORD,
|
|
FLEET_SERVER_KEY_PATH,
|
|
FLEET_SERVER_CERT_PATH,
|
|
FLEET_SERVER_P12_PATH,
|
|
FLEET_SERVER_P12_PASSWORD,
|
|
} from './src/certs';
|
|
export * from './src/dev_service_account';
|
|
export * from './src/axios';
|
|
export * from './src/plugin_list';
|
|
export * from './src/streams';
|
|
export * from './src/extract';
|
|
export * from './src/diff_strings';
|