Project

General

Profile

InterServerSync » History » Version 4

Chris Duryee, 10/27/2015 11:42 AM

1 1 Chris Duryee
h1. InterServerSync
2
3 2 Chris Duryee
h3. What is ISS?
4
5
Inter-Server Sync is a feature designed to help users in two scenarios:
6
7
 * users who have a connected Foreman/Katello instance and disconnected Foreman/Katello, who want to propogate data from the connected side of their network to the disconnected side.
8
 * users who have a "main" Foreman/Katello and want to propogate some data (but not all data) to other instances. One example is for users who have "blessed" content views that are validated by the IT department, and want to propogate those down elsewhere.
9
10 1 Chris Duryee
h3. Goals
11
12 3 Chris Duryee
Roughly, phase 1 is the minimal "get it working" phase where we have a demoable end-to-end scenario that works via hammer. After that, we will collect feedback and move on to phase 2 which moves some of the grunt work done by hammer to the server, and adds web UI support. Phase 3 will be for support of additional content types and new types of foreman/katello data.
13 1 Chris Duryee
14
15
h4. Phase 1 "get it working" goals
16
17
 * allow exporting and importing of products and Library content views
18
 * export/import can occur via hammer and web UI, but some filesystem-level access is needed for accessing yum repo exports (scp, http, etc)
19
 * only yum is supported
20
 * incremental dumps are supported
21
22 4 Chris Duryee
Note: phase 1 replaces katello-disconnected script, and solves the same problem that Spacewalk solves with Inter-Spacewalk Sync in a minimal fashion
23 1 Chris Duryee
24 3 Chris Duryee
h4. Phase 2 "web UI and optimization" goals
25 1 Chris Duryee
26 3 Chris Duryee
 * API clean up to allow for bulk export/import with only a few server calls - this is needed for web UI support since we can't rely on hammer
27
 * support for import/export of products and library CV via web UI
28 1 Chris Duryee
 * allow export and import without filesystem access to machine (hammer or web ui can provide download of export and upload of import)
29
30
h4. Phase 3+ "rinse and repeat" goals
31
32
 * allow exporting and importing of other data (environments, non-library content views, etc)
33
 * support for ostree, docker, puppet content
34
35
36
h3. Phase 1 Design
37
38
There are two areas that need to be updated for phase 1. We need to allow for exporting and importing of yum repo data (including incremental updates), and we need to allow for exporting and importing of product and library CV data. The former is largely provided by Pulp, and the latter is provided by hammer-cli-csv.
39
40
We will need to add the Pulp export distributor on newly created yum repos. Additionally, existing repos will need to have the export distributor added in via migration.
41
42 3 Chris Duryee
Phase 1 allows for hammer-cli-csv doing a lot of "grunt" work in loading the CSV data. This will need to be done server-side in later phases.
43
44
h4. Hammer design
45
46
(need to fill in)
47
48
h4. API modifications
49
50
(need to fill in)