Skip to content

Commit 96d4f74

Browse files
authored
Document migrating agents to a new cluster (#528)
* Document migrating agents to a new cluster * Cleanup * Reorder ToC
1 parent dfecac1 commit 96d4f74

14 files changed

+185
-3
lines changed

docs/en/ingest-management/fleet/fleet-manage-agents.asciidoc

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ To manage your {agent}s, go to *Management > {fleet} > Agents* in {kib}. On the
2424
|<<upgrade-elastic-agent>>
2525
|Upgrade {agent}s to the latest version.
2626

27-
|<<filter-agent-list-by-tags>>
28-
|Add tags to {agent}, then use the tags to filter the Agents list in {fleet}.
27+
|<<migrate-elastic-agent>>
28+
|Migrate {agent}s from one cluster to another.
2929

3030
|<<monitor-elastic-agent>>
3131
|Monitor {fleet}-managed {agent}s by viewing agent status, logs, and metrics.
3232

33+
|<<filter-agent-list-by-tags>>
34+
|Add tags to {agent}, then use the tags to filter the Agents list in {fleet}.
35+
3336
|===
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
[[migrate-elastic-agent]]
2+
= Migrate {fleet}-managed {agent}s from one cluster to another
3+
4+
++++
5+
<titleabbrev>Migrate {agent}s</titleabbrev>
6+
++++
7+
8+
There are situations where you may need to move your installed {agent}s from being managed in one cluster to being managed in another cluster.
9+
10+
For a seamless migration, we advise that you create an identical agent policy in the new cluster that is configured in the same manner as the original cluster. There are a few methods to do this.
11+
12+
This guide takes you through the steps to migrate your {agent}s by snapshotting a source cluster and restoring it on a target cluster. These instructions assume that you have an {ecloud} deployment, but they can be applied to on-premise clusters as well.
13+
14+
[discrete]
15+
[[migrate-elastic-agent-take-snapshot]]
16+
== Take a snapshot of the source cluster
17+
18+
Refer to the full {ref}/snapshot-restore.html[Snapshot and restore] documentation for full details. In short, to create a new snapshot in an {ecloud} deployment:
19+
20+
. In {kib}, open the main menu, then click *Manage this deployment*.
21+
. In the deployment menu, select *Snapshots*.
22+
. Click *Take snapshot now*.
23+
+
24+
[role="screenshot"]
25+
image::images/migrate-agent-take-snapshot.png[Deployments Snapshots page]
26+
27+
[discrete]
28+
[[migrate-elastic-agent-create-target]]
29+
== Create a new target cluster from the snapshot
30+
31+
You can create a new cluster based on the snapshot taken in the previous step, and then migrate your {agent}s and {fleet} to the new cluster. For best results, it's recommended that the new target cluster be at the same version as the cluster that the agents are migrating from.
32+
33+
. Open the {ecloud} console and select *Create deployment*.
34+
. Select *Restore snapshot data*.
35+
. In the *Restore from* field, select your source deployment.
36+
. Choose your deployment settings, and, optimally, choose the same {stack} version as the source cluster.
37+
. Click *Create deployment*.
38+
+
39+
[role="screenshot"]
40+
image::images/migrate-agent-new-deployment.png[Create a deployment page]
41+
42+
[discrete]
43+
[[migrate-elastic-agent-target-settings]]
44+
== Update settings in the target cluster
45+
46+
when the target cluster is available you'll need to adjust a few settings. Take some time to examine the {fleet} setup in the new cluster.
47+
48+
. Open the {kib} menu and select *Fleet*.
49+
. On the *Agents* tab, your agents should visible, however they'll appear as `Offline`. This is because these agents have not yet enrolled in the new, target cluster, and are still enrolled in the original, source cluster.
50+
+
51+
[role="screenshot"]
52+
image::images/migrate-agent-agents-offline.png[Agents tab in Fleet showing offline agents]
53+
54+
. Open the {fleet} *Settings* tab.
55+
. Examine the configurations captured there for {fleet}. Note that these settings are scopied from the snapshot of the source cluster and may not have a meaning in the target cluster, so they need to be modified accordingly.
56+
+
57+
In the following example, both the *Fleet Server hosts* and the *Outputs* settings are copied over from the source cluster:
58+
+
59+
[role="screenshot"]
60+
image::images/migrate-agent-host-output-settings.png[Settings tab in Fleet showing source deployment host and output settings]
61+
+
62+
The next steps explain how to obtain the relevant {fleet-server} host and {es} output details applicable to the new target cluster in {ecloud}.
63+
64+
[discrete]
65+
[[migrate-elastic-agent-elasticsearch-output]]
66+
=== Modify the {es} output
67+
68+
. In the new target cluster on {ecloud}, in the *Outputs* section, on the {fleet} *Settings* tab, you will find an internal output named `Elastic Cloud internal output`. The host address is in the form:
69+
+
70+
`https://<cluster-id-target>.containerhost:9244`
71+
+
72+
Record this `<cluster-id-target>` from the target cluster. In the example shown, the ID is `fcccb85b651e452aa28703a59aea9b00`.
73+
74+
. Also in the *Outputs* section, notice that the default {es} output (that was copied over from the source cluster) is also in the form:
75+
+
76+
`https://<cluster-id-source>.<cloud endpoint address>:443`.
77+
+
78+
Modify the {es} output so that the cluster ID is the same as that for `Elastic Cloud internal output`. In this example we also rename the output to `New Elasticsearch`.
79+
+
80+
[role="screenshot"]
81+
image::images/migrate-agent-elasticsearch-output.png[Outputs section showing the new Elasticsearch host setting]
82+
+
83+
In this example, the `New Elasticsearch` output and the `Elastic Cloud internal output` now have the same cluster ID, namely `fcccb85b651e452aa28703a59aea9b00`.
84+
85+
You have now created an {es} output that agents can use to write data to the new, target cluster. For on-premise environments not using {ecloud}, you should similarly be able to use the host address of the new cluster.
86+
87+
[discrete]
88+
[[migrate-elastic-agent-fleet-host]]
89+
=== Modify the {fleet-server} host
90+
91+
Like the {es} host, the {fleet-server} host has also changed with the new target cluster. Note that if you're deploying {fleet-server} on premise, the host has probably not changed address and this setting does not need to be modified. We still recommend that you ensure the agents are able to reach the the on-premise {fleet-server} host (which they should be able to as they were able to connect to it prior to the migration).
92+
93+
The {ecloud} {fleet-server} host has a similar format to the {es} output:
94+
95+
`https://<deployment-id>.fleet.<domain>.io`
96+
97+
To configure the correct {ecloud} {fleet-server} host you will need to find the target cluster's full `deployment-id`, and use it to replace the original `deployment-id` that was copied over from the source cluster.
98+
99+
The easiest way to find the `deployment-id` is from the deployment URL:
100+
101+
. From the {kib} menu select *Manage this deployment*.
102+
. Copy the deployment ID from the URL in your browser's address bar.
103+
+
104+
[role="screenshot"]
105+
image::images/migrate-agent-deployment-id.png[Deployment management page, showing the browser URL]
106+
+
107+
In this example, the new deployment ID is `eed4ae8e2b604fae8f8d515479a16b7b`.
108+
+
109+
Using that value for `deployment-id`, the new {fleet-server} host URL is:
110+
+
111+
`https://eed4ae8e2b604fae8f8d515479a16b7b.fleet.us-central1.gcp.cloud.es.io:443`
112+
113+
. In the target cluster, under *Fleet server hosts*, replace the original host URL with the new value.
114+
+
115+
[role="screenshot"]
116+
image::images/migrate-agent-fleet-server-host.png[Fleet server hosts showing the new host URL]
117+
118+
[discrete]
119+
[[migrate-elastic-agent-confirm-policy]]
120+
=== Confirm your policy settings
121+
122+
Now that the {fleet} settings are correctly set up, it pays to ensure that the {agent} policy is also correctly pointing to the correct entities.
123+
124+
. In the target cluster, go to *Fleet -> Agent policies*.
125+
. Select a policy to verify.
126+
. Open the *Settings* tab.
127+
. Ensure that *Fleet Server*, *Output for integrations*, and *Output for agent monitoring* are all set to the newly created entities.
128+
+
129+
[role="screenshot"]
130+
image::images/migrate-agent-policy-settings.png[An agent policy's settings showing the newly created entities]
131+
132+
NOTE: If you modified the {fleet-server} and the output in place these would have been updated accordingly. However if new entities are created, then ensure that the correct ones are referenced here.
133+
134+
[discrete]
135+
[[migrate-elastic-agent-migrated-policies]]
136+
== Agent policies in the new target cluster
137+
138+
By creating the new target cluster from a snapshot, all of your policies should have been created along with all of the agents. These agents will be offline due to the fact that the actual agents are not checking in with the new, target cluster (yet) and are still communicating with the source cluster.
139+
140+
The agents can now be re-enrolled into these policies and migrated over to the new, target cluster.
141+
142+
[discrete]
143+
[[migrate-elastic-agent-migrated-agents]]
144+
== Migrate {agent}s to the new target cluster
145+
146+
In order to ensure that all required API keys are correctly created, the agents in your current cluster need to be re-enrolled into the new, target cluster.
147+
148+
This is best performed one policy at a time. For a given policy, you need to capture the enrollment token and the URL for the agent to connect to. You can find these by running the in-product steps to add a new agent.
149+
150+
. On the target cluster, open *Fleet* and select *Add agent*.
151+
. Select your newly created policy.
152+
. In the section *Install {agent} on your host*, find the sample install command. This contains the details you'll need to enroll the agents, namely the enrollment token and the {fleet-server} URL.
153+
. Copy the portion of the install command containing these values. That is, `–url=<path> –enrollment-token=<token for the new policy>`.
154+
+
155+
[role="screenshot"]
156+
image::images/migrate-agent-install-command.png[Install command from the Add Agent UI]
157+
158+
. On the host machines where the current agents are installed, enroll the agents again using this copied URL and the enrollment token:
159+
+
160+
[source,shell]
161+
----
162+
sudo elastic-agent enroll --url=<fleet server url> --enrollment-token=<token for the new policy>
163+
----
164+
+
165+
The command output should be like the following:
166+
+
167+
[role="screenshot"]
168+
image::images/migrate-agent-install-command-output.png[Install command output]
169+
170+
. The agent on each host will now check into the new {fleet-server} and appear in the new target cluster. In the source cluster, the agents will go offline as they won't be sending any check-ins.
171+
+
172+
[role="screenshot"]
173+
image::images/migrate-agent-newly-enrolled-agents.png[Newly enrolled agents in the target cluster]
174+
175+
. Repeat this procedure for each {agent} policy.
176+
177+
If all has gone well, you've successfully migrated your {fleet}-managed {agent}s to a new cluster.
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

docs/en/ingest-management/index.asciidoc

+3-1
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,12 @@ include::fleet/set-inactivity-timeout.asciidoc[leveloffset=+3]
125125

126126
include::fleet/upgrade-elastic-agent.asciidoc[leveloffset=+3]
127127

128-
include::fleet/filter-agent-list-by-tags.asciidoc[leveloffset=+3]
128+
include::fleet/migrate-elastic-agent.asciidoc[leveloffset=+3]
129129

130130
include::fleet/monitor-elastic-agent.asciidoc[leveloffset=+3]
131131

132+
include::fleet/filter-agent-list-by-tags.asciidoc[leveloffset=+3]
133+
132134
include::agent-policies.asciidoc[leveloffset=+2]
133135

134136
include::create-agent-policies-no-UI.asciidoc[leveloffset=+3]

0 commit comments

Comments
 (0)