File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 13
13
/deploy /helm /edot-collector @ elastic/ingest-otel-data
14
14
/deploy /kubernetes @ elastic/elastic-agent-control-plane
15
15
/dev-tools /kubernetes @ elastic/elastic-agent-control-plane
16
+ /docs /release-notes @ elastic/ingest-docs
17
+ /docs /docset.yml @ elastic/ingest-docs
16
18
/internal /pkg /composable /providers /kubernetes @ elastic/elastic-agent-control-plane
17
19
/internal /pkg /otel /samples /darwin /autoops_es.yml @ elastic/opex
18
20
/internal /pkg /otel /samples /linux /autoops_es.yml @ elastic/opex
Original file line number Diff line number Diff line change 1
1
{
2
2
"version": "9.2.0-SNAPSHOT",
3
- "build_id": "9.2.0-ae69fe57 ",
4
- "manifest_url": "https://snapshots.elastic.co/9.2.0-ae69fe57 /manifest-9.2.0-SNAPSHOT.json",
5
- "summary_url": "https://snapshots.elastic.co/9.2.0-ae69fe57 /summary-9.2.0-SNAPSHOT.html",
3
+ "build_id": "9.2.0-a3e57754 ",
4
+ "manifest_url": "https://snapshots.elastic.co/9.2.0-a3e57754 /manifest-9.2.0-SNAPSHOT.json",
5
+ "summary_url": "https://snapshots.elastic.co/9.2.0-a3e57754 /summary-9.2.0-SNAPSHOT.html",
6
6
"core_version": "9.2.0",
7
- "stack_build_id": "9.2.0-ae69fe57 -SNAPSHOT"
7
+ "stack_build_id": "9.2.0-a3e57754 -SNAPSHOT"
8
8
}
Original file line number Diff line number Diff line change @@ -162,17 +162,18 @@ func initGlobals() {
162
162
163
163
versionQualifier , versionQualified = os .LookupEnv ("VERSION_QUALIFIER" )
164
164
165
- agentPackageVersion = EnvOr (agentPackageVersionEnvVar , "" )
166
-
167
- ManifestURL = EnvOr (ManifestUrlEnvVar , "" )
168
- PackagingFromManifest = ManifestURL != ""
169
-
170
- // order matters this must be called last as it will override some of the
171
- // values above
165
+ // order matters: this will override some of the values. Those values can be used
166
+ // as fallback for the variables below (mainly agentPackageVersion and ManifestURL)
172
167
err = initPackageVersion ()
173
168
if err != nil {
174
169
panic (fmt .Errorf ("failed to init package version: %w" , err ))
175
170
}
171
+
172
+ agentPackageVersion = EnvOr (agentPackageVersionEnvVar , agentPackageVersion )
173
+
174
+ ManifestURL = EnvOr (ManifestUrlEnvVar , ManifestURL )
175
+ PackagingFromManifest = ManifestURL != ""
176
+
176
177
}
177
178
178
179
// ProjectType specifies the type of project (OSS vs X-Pack).
Original file line number Diff line number Diff line change @@ -686,6 +686,9 @@ func TestBeatsReceiverLogs(t *testing.T) {
686
686
},
687
687
Stack : nil ,
688
688
})
689
+
690
+ t .Skip ("Skip this test as it's flaky. See https://github.com/elastic/elastic-agent/issues/9890" )
691
+
689
692
type configOptions struct {
690
693
RuntimeExperimental string
691
694
}
You can’t perform that action at this time.
0 commit comments