forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fleet_packages.json
61 lines (55 loc) · 1.98 KB
/
fleet_packages.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
Packages listed in this file are "bundled" with Kibana's built distributable, and are available
on disk rather than only in the configured package registry service. This allows Kibana to install
"stack-aligned" packages or those that are installed by default in an airgapped or offline environment.
The `forceAlignStackVersion` option is available for packages who wish to opt into having their
versions forcibly rewritten to the current version of Kibana. This is useful for packages that
deploy multiple, version-aligned stack components like APM. When this option is enabled, Kibana
will fetch the latest available version of the package from EPR (including prerelease versions),
download that version, and rewrite its version to align with Kibana's.
The `allowSyncToPrerelease` option is available for packages who wish to opt into allowing sync
"bundled" packages whose version contain prerelease tags (e.g. 8.4.3-beta.1). By default, it just
updates to stable versions.
Packages will be fetched from https://epr-snapshot.elastic.co by default. This can be overridden
via the `--epr-registry=production` command line argument when building Kibana. Fetching from the
snapshot registry allows Kibana to bundle packages that have yet to be published to production in
order to prepare build candidates for the next release.
*/
[
{
"name": "apm",
"version": "8.15.0-preview-1716438434",
"forceAlignStackVersion": true,
"allowSyncToPrerelease": true
},
{
"name": "elastic_agent",
"version": "2.0.3"
},
{
"name": "endpoint",
"version": "8.15.1"
},
{
"name": "fleet_server",
"version": "1.5.0"
},
{
"name": "profiler_symbolizer",
"version": "8.14.1",
"forceAlignStackVersion": true
},
{
"name": "profiler_collector",
"version": "8.14.1",
"forceAlignStackVersion": true
},
{
"name": "synthetics",
"version": "1.2.2"
},
{
"name": "security_detection_engine",
"version": "8.15.4"
}
]