Skip to content

Commit 19df7b9

Browse files
committed
Add a known issue for agents getting stuck in a scheduled state
1 parent 0a65551 commit 19df7b9

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

docs/en/ingest-management/release-notes/release-notes-8.19.asciidoc

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,49 @@ Review important information about the {fleet} and {agent} 8.19.0 release.
3838
{fleet-server}::
3939
* Upgrade golang.org/x/net to v0.34.0 and golang.org/x/crypto to v0.32.0. {fleet-server-pull}4405[#4405]
4040

41+
[discrete]
42+
[[known-issues-8.19.0]]
43+
=== Known issues
44+
45+
{agent}::
46+
47+
[[known-issue-issue#]]
48+
.{agents} remain in an "Upgrade scheduled" state
49+
[%collapsible]
50+
====
51+
52+
*Details* +
53+
54+
There is a known issue where after a scheduled {agent} upgrade is cancelled, {agent} remains in an `Upgrade scheduled` state, and attempting to restart the upgrade on the UI returns an error: `The selected agent is not upgradeable: agent is already being upgraded.`.
55+
56+
*Impact* +
57+
58+
Until this issue is fixed in a later patch version, you can call the https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-fleet-agents-agentid-upgrade[Upgrade an agent] endpoint of the Kibana Fleet API with the `force` parameter set to `true` to force-upgrade the {agent}:
59+
60+
[source,shell]
61+
----
62+
curl --request POST \
63+
--url https://<KIBANA_HOST>/api/fleet/agents/<AGENT_ID>/upgrade \
64+
--user "<SUPERUSER_NAME>:<SUPERUSER_PASSWORD>" \
65+
--header 'Content-Type: application/json' \
66+
--header 'kbn-xsrf: as' \
67+
--data '{"version": "<VERSION>","force": true}'
68+
----
69+
70+
To force-upgrade multiple {agents}, call the https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-fleet-agents-bulk-upgrade[Bulk upgrade agents] endpoint of the Kibana Fleet API with the `force` parameter set to `true`:
71+
72+
[source,shell]
73+
----
74+
curl --request POST \
75+
--url https://<KIBANA_HOST>/api/fleet/agents/bulk_upgrade \
76+
--user "<SUPERUSER_NAME>:<SUPERUSER_PASSWORD>" \
77+
--header 'Content-Type: application/json' \
78+
--header 'kbn-xsrf: as' \
79+
--data '{"version": "<VERSION>","force": true,"agents":["<AGENT_IDS>"]}'
80+
----
81+
82+
====
83+
4184
[discrete]
4285
[[new-features-8.19.0]]
4386
=== New features

0 commit comments

Comments
 (0)