Merge branch '15026-cloudtest'
[arvados.git] / doc / admin / merge-remote-account.html.textile.liquid
1 ---
2 layout: default
3 navsection: admin
4 title: "Migrating users to federated accounts"
5 ...
6 {% comment %}
7 Copyright (C) The Arvados Authors. All rights reserved.
8
9 SPDX-License-Identifier: CC-BY-SA-3.0
10 {% endcomment %}
11
12 When using multiple Arvados clusters, prior to federation capabilities described here, a user would have to create a separate account on each cluster.  Unfortunately, because each account represents a separate "identity", in this system permissions granted to a user on one cluster do not transfer to another cluster, even if the accounts are associated with the same user.
13
14 To address this, Arvados supports "federated user accounts".  A federated user account is associated with a specific "home" cluster, and can be used to access other clusters in the federation that trust the home cluster.  When a user arrives at another cluster's Workbench, they select and log in to their home cluster, and then are returned to the starting cluster logged in with the federated user account.
15
16 When setting up federation capabilities on existing clusters, some users might already have accounts on multiple clusters.  In order to have a single federated identity, users should be assigned a "home" cluster, and accounts associated with that user on the other (non-home) clusters should be migrated to the new federated user account.  The @arv-federation-migrate@ tool assists with this.
17
18 h2. arv-federation-migrate
19
20 The tool @arv-federation-migrate@ is part of the @arvados-python-client@ package.
21
22 This tool is designed to help an administrator who has access to all clusters in a federation to migrate users who have multiple accounts to a single federated account.
23
24 As part of migrating a user, any data or permissions associated with old user accounts will be reassigned to the federated account.
25
26 h2. Get user report
27
28 The first step is to create @tokens.csv@ and list each cluster and API token to access the cluster.  API tokens must be trusted tokens with administrator access.  This is a simple comma separated value file and can be created in a text editor.  Example:
29
30 _tokens.csv_
31
32 <pre>
33 x3982.arvadosapi.com,v2/x3982-gj3su-sb6meh2jf145s7x/98d40d70d8862e33d7398213435d1a71a96cf870
34 x6b1s.arvadosapi.com,v2/x6b1s-gj3su-dxc87btfv5kg91z/5575d980d3ff6231bb0c692281c42a7541c59417
35 </pre>
36
37 Next, run @arv-federation-migrate@ with the @--tokens@ and @--report@ flags:
38
39 <pre>
40 $ arv-federation-migrate --tokens tokens.csv --report users.csv
41 Reading tokens.csv
42 Getting user list from x6b1s
43 Getting user list from x3982
44 Wrote users.csv
45 </pre>
46
47 This will produce a report of users across all clusters listed in @tokens.csv@, sorted by email address.  This file can be loaded into a text editor or spreadsheet program for ease of viewing and editing.
48
49 _users.csv_
50
51 <pre>
52 email,user uuid,primary cluster/user
53 person_a@example.com,x6b1s-tpzed-hb5n7doogwhk6cf,x6b1s
54 person_b@example.com,x3982-tpzed-1vl3k7knf7qihbe,
55 person_b@example.com,x6b1s-tpzed-w4nhkx2rmrhlr54,
56 </pre>
57
58 The third column describes that user's home cluster.  If a user only has one account (identified by email address), the column will be filled in and there is nothing to do.  If the column is blank, that means there is more than one Arvados account associated with the user.  Edit the file and provide the desired home cluster for each user.  In this example, <code>person_b@example.com</code> is assigned the home cluster @x3982@.
59
60 _users.csv_
61
62 <pre>
63 email,user uuid,primary cluster/user
64 person_a@example.com,x6b1s-tpzed-hb5n7doogwhk6cf,x6b1s
65 person_b@example.com,x3982-tpzed-1vl3k7knf7qihbe,x3982
66 person_b@example.com,x6b1s-tpzed-w4nhkx2rmrhlr54,x3982
67 </pre>
68
69 h2. Migrate users
70
71 To avoid disruption, advise users to log out and avoid running workflows while performing the migration.
72
73 After updating @users.csv@, use the @--migrate@ option:
74
75 <pre>
76 $ arv-federation-migrate --tokens tokens.csv --migrate users.csv
77 (person_b@example.com) Migrating x6b1s-tpzed-w4nhkx2rmrhlr54 to x3982-tpzed-1vl3k7knf7qihbe
78 </pre>
79
80 After migration, users should select their home cluster when logging into Arvados Workbench.  If a user attempts to log into a migrated user account, they will be redirected to log in with their home cluster.