You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/en/ingest-management/release-notes/release-notes-8.12.asciidoc
+44-17
Original file line number
Diff line number
Diff line change
@@ -458,35 +458,62 @@ Note that according to our <<agent-policy-scaling-recommendations,policy scaling
458
458
459
459
An issue discovered in {fleet-server} prevents {agents} that have been upgraded to version 8.12.0 from being upgraded again, using the {fleet} UI, to version 8.12.1 or higher.
460
460
461
+
This issue is planned to be fixed in versions 8.12.2 and 8.13.0.
462
+
461
463
*Impact* +
462
464
463
-
As a workaround, we recommend you to use the {kib} {fleet} API to upgrade these agents using the `force` flag.
464
-
465
-
To upgrade a single {agent}:
465
+
As a workaround, we recommend you to use the {kib} {fleet} API to update any documents in which `upgrade_details` is either `null` or not defined. Note that these steps must be run as a superuser.
466
466
467
467
[source,"shell"]
468
468
----
469
-
POST kbn:/api/fleet/agents/<agent_id>/upgrade
470
-
{
471
-
"version": "8.12.1",
472
-
"force": true
473
-
}
469
+
POST _security/role/fleet_superuser
470
+
{
471
+
"indices": [
472
+
{
473
+
"names": [".fleet*",".kibana*"],
474
+
"privileges": ["all"],
475
+
"allow_restricted_indices": true
476
+
}
477
+
]
478
+
}
474
479
----
475
480
476
-
To bulk upgrade a set of {agents}:
477
-
478
481
[source,"shell"]
479
482
----
480
-
POST kbn:/api/fleet/agents/bulk_upgrade
481
-
{
482
-
"agents": "agent.version:8.12.0",
483
-
"version": "8.12.1",
484
-
"force": true
485
-
}
483
+
POST _security/user/fleet_superuser
484
+
{
485
+
"password": "password",
486
+
"roles": ["superuser", "fleet_superuser"]
487
+
}
486
488
----
487
489
488
-
This issue is planned to be fixed in versions 8.12.2 and 8.13.0.
0 commit comments