foreman_acd 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/foreman_acd/ansible_playbooks_controller.rb +75 -0
  3. data/app/controllers/foreman_acd/app_instances_controller.rb +19 -2
  4. data/app/controllers/foreman_acd/concerns/ansible_playbook_parameters.rb +1 -1
  5. data/app/controllers/foreman_acd/remote_execution_controller.rb +37 -21
  6. data/app/lib/actions/foreman_acd/deploy_all_hosts.rb +12 -7
  7. data/app/lib/actions/foreman_acd/run_configurator.rb +10 -7
  8. data/app/models/concerns/foreman_acd/host_managed_extensions.rb +2 -2
  9. data/app/models/foreman_acd/acd_provider.rb +7 -1
  10. data/app/models/foreman_acd/ansible_playbook.rb +2 -1
  11. data/app/models/foreman_acd/app_instance.rb +1 -1
  12. data/app/services/foreman_acd/acd_proxy_proxy_selector.rb +17 -0
  13. data/app/services/foreman_acd/app_configurator.rb +59 -15
  14. data/app/services/foreman_acd/app_deployer.rb +8 -2
  15. data/app/services/foreman_acd/inventory_creator.rb +14 -0
  16. data/app/views/foreman_acd/ansible_playbooks/_form.html.erb +41 -7
  17. data/app/views/foreman_acd/app_definitions/_form.html.erb +1 -1
  18. data/app/views/foreman_acd/app_instances/_form.html.erb +1 -1
  19. data/app/views/foreman_acd/app_instances/index.html.erb +5 -3
  20. data/app/views/foreman_acd/app_instances/report.html.erb +1 -1
  21. data/app/views/templates/job/run_acd_ansible_playbook.erb +1 -1
  22. data/config/routes.rb +3 -0
  23. data/db/migrate/20210316151145_add_git_commit_to_ansible_playbooks.rb +8 -0
  24. data/db/migrate/20210503122809_add_git_url_to_ansible_playbooks.rb +8 -0
  25. data/db/seeds.d/75-job_templates.rb +1 -1
  26. data/lib/foreman_acd.rb +12 -0
  27. data/lib/foreman_acd/engine.rb +26 -4
  28. data/lib/foreman_acd/plugin.rb +0 -9
  29. data/lib/foreman_acd/version.rb +1 -1
  30. data/lib/tasks/foreman_acd_tasks.rake +0 -12
  31. data/package.json +8 -8
  32. data/test/controllers/ansible_playbooks_controller_test.rb +1 -1
  33. data/test/controllers/app_instances_controller_test.rb +8 -3
  34. data/test/controllers/ui_acd_controller_test.rb +22 -6
  35. data/test/factories/foreman_acd_factories.rb +18 -4
  36. data/test/models/acd_provider_test.rb +37 -0
  37. data/test/models/ansible_playbook_test.rb +11 -0
  38. data/test/models/app_definition_test.rb +1 -1
  39. data/test/models/app_instance_test.rb +2 -0
  40. data/test/models/concerns/host_extensions_test.rb +26 -0
  41. data/test/models/foreman_host_test.rb +12 -0
  42. data/webpack/__mocks__/foremanReact/API.js +2 -0
  43. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  44. data/webpack/__mocks__/foremanReact/common/helpers.js +2 -0
  45. data/webpack/__mocks__/foremanReact/components/ForemanModal.js +7 -0
  46. data/webpack/__mocks__/foremanReact/components/common/forms/CommonForm.js +2 -0
  47. data/webpack/__mocks__/foremanReact/components/common/forms/TextInput.js +2 -0
  48. data/webpack/__mocks__/foremanReact/components/hosts/powerStatus.js +1 -0
  49. data/webpack/__snapshots__/helper.test.js.snap +14 -0
  50. data/webpack/components/ApplicationDefinition/ApplicationDefinition.js +1 -1
  51. data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionConfData_1.fixtures.js +288 -0
  52. data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionReducer.fixtures.js +79 -0
  53. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinition.test.js +25 -0
  54. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionReducer.test.js +119 -0
  55. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionSelectors.test.js +41 -0
  56. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinition.test.js.snap +200 -0
  57. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionReducer.test.js.snap +3033 -0
  58. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionSelectors.test.js.snap +299 -0
  59. data/webpack/components/ApplicationDefinition/components/AnsiblePlaybookSelector.js +1 -0
  60. data/webpack/components/ApplicationDefinition/components/__tests__/AnsiblePlaybookSelector.test.js +41 -0
  61. data/webpack/components/ApplicationDefinition/components/__tests__/__snapshots__/AnsiblePlaybookSelector.test.js.snap +121 -0
  62. data/webpack/components/ApplicationInstance/ApplicationInstance.js +3 -5
  63. data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceConfData_1.fixtures.js +263 -0
  64. data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceReducer.fixtures.js +78 -0
  65. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstance.test.js +23 -0
  66. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceReducer.test.js +119 -0
  67. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceSelectors.test.js +44 -0
  68. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstance.test.js.snap +209 -0
  69. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceReducer.test.js.snap +2719 -0
  70. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceSelectors.test.js.snap +276 -0
  71. data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportData_1.fixtures.js +349 -0
  72. data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportReducer.fixtures.js +20 -0
  73. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReport.test.js +47 -0
  74. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportReducer.test.js +41 -0
  75. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportSelectors.test.js +26 -0
  76. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReport.test.js.snap +130 -0
  77. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportReducer.test.js.snap +718 -0
  78. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportSelectors.test.js.snap +347 -0
  79. data/webpack/components/ApplicationInstanceReport/components/__tests__/ReportViewer.test.js +24 -0
  80. data/webpack/components/ApplicationInstanceReport/components/__tests__/__snapshots__/ReportViewer.test.js.snap +24 -0
  81. data/webpack/components/ParameterSelection/ParameterSelectionReducer.js +2 -21
  82. data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionData_1.fixtures.js +116 -84
  83. data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionReducer.fixtures.js +10 -4
  84. data/webpack/components/ParameterSelection/__tests__/ParameterSelection.test.js +36 -46
  85. data/webpack/components/ParameterSelection/__tests__/ParameterSelectionReducer.test.js +31 -25
  86. data/webpack/components/ParameterSelection/__tests__/ParameterSelectionSelectors.test.js +6 -6
  87. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelection.test.js.snap +2 -126
  88. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionReducer.test.js.snap +1483 -872
  89. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionSelectors.test.js.snap +117 -79
  90. data/webpack/components/SyncGitRepo/SyncGitRepo.js +210 -0
  91. data/webpack/components/SyncGitRepo/SyncGitRepo.scss +1 -0
  92. data/webpack/components/SyncGitRepo/SyncGitRepoActions.js +124 -0
  93. data/webpack/components/SyncGitRepo/SyncGitRepoConstants.js +9 -0
  94. data/webpack/components/SyncGitRepo/SyncGitRepoReducer.js +80 -0
  95. data/webpack/components/SyncGitRepo/SyncGitRepoSelectors.js +6 -0
  96. data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoConfData_1.fixtures.js +7 -0
  97. data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoReducer.fixtures.js +44 -0
  98. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepo.test.js +27 -0
  99. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoReducer.test.js +95 -0
  100. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoSelectors.test.js +32 -0
  101. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepo.test.js.snap +30 -0
  102. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoReducer.test.js.snap +137 -0
  103. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoSelectors.test.js.snap +13 -0
  104. data/webpack/components/SyncGitRepo/components/FormTextInput.js +42 -0
  105. data/webpack/components/SyncGitRepo/components/ScmTypeSelector.js +46 -0
  106. data/webpack/components/SyncGitRepo/index.js +28 -0
  107. data/webpack/components/common/ExtTextInput.js +43 -0
  108. data/webpack/components/common/__tests__/EditTableEntry.test.js +53 -0
  109. data/webpack/components/common/__tests__/LockTableEntry.test.js +35 -0
  110. data/webpack/components/common/__tests__/__snapshots__/DeleteTableEntry.test.js.snap +2 -2
  111. data/webpack/components/common/__tests__/__snapshots__/EditTableEntry.test.js.snap +81 -0
  112. data/webpack/components/common/__tests__/__snapshots__/LockTableEntry.test.js.snap +60 -0
  113. data/webpack/helper.js +15 -1
  114. data/webpack/helper.test.js +37 -0
  115. data/webpack/index.js +2 -0
  116. data/webpack/reducer.js +4 -0
  117. metadata +92 -11
  118. data/webpack/components/common/EasyHeaderFormatter.js +0 -18
  119. data/webpack/components/common/__tests__/__snapshots__/AddParameter.test.js.snap +0 -35
  120. data/webpack/components/common/__tests__/__snapshots__/DeleteParameter.test.js.snap +0 -41
@@ -0,0 +1,276 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`ApplicationInstanceSelectors should return ParamEditMode from applicationInstanceConfData_1 fixtures 1`] = `undefined`;
4
+
5
+ exports[`ApplicationInstanceSelectors should return ansibleVarsAll from applicationInstanceConfData_1 fixtures 1`] = `
6
+ Array [
7
+ Object {
8
+ "id": 0,
9
+ "name": "repository",
10
+ "value": "https://github.com/bennojoy/mywebapp.git",
11
+ },
12
+ ]
13
+ `;
14
+
15
+ exports[`ApplicationInstanceSelectors should return appDefinition from applicationInstanceConfData_1 fixtures 1`] = `
16
+ Object {
17
+ "ansible_vars_all": "[{\\"id\\":0,\\"name\\":\\"repository\\",\\"value\\":\\"https://github.com/bennojoy/mywebapp.git\\"}]",
18
+ "created_at": "2021-03-11 12:51:34 +0100",
19
+ "description": "",
20
+ "id": 1,
21
+ "location_ids": Array [
22
+ 2,
23
+ ],
24
+ "name": "LAMP",
25
+ "organization_ids": Array [
26
+ 1,
27
+ ],
28
+ "services": "[{\\"id\\":1,\\"name\\":\\"web\\",\\"description\\":\\"\\",\\"hostgroup\\":\\"1\\",\\"ansibleGroup\\":\\"webservers\\",\\"minCount\\":\\"2\\",\\"maxCount\\":\\"\\",\\"foremanParameters\\":[{\\"id\\":1,\\"locked\\":false,\\"name\\":\\"CP\\",\\"description\\":\\"\\",\\"type\\":\\"computeprofile\\",\\"value\\":\\"1\\"},{\\"id\\":2,\\"locked\\":true,\\"name\\":\\"LE\\",\\"description\\":\\"\\",\\"type\\":\\"lifecycleenv\\",\\"value\\":\\"1\\"}],\\"ansibleParameters\\":[{\\"id\\":0,\\"name\\":\\"dummy_var\\",\\"value\\":\\"0\\"}]},{\\"id\\":2,\\"name\\":\\"db\\",\\"description\\":\\"\\",\\"hostgroup\\":\\"1\\",\\"ansibleGroup\\":\\"dbservers\\",\\"minCount\\":\\"1\\",\\"maxCount\\":\\"\\",\\"foremanParameters\\":[],\\"ansibleParameters\\":[{\\"id\\":0,\\"name\\":\\"mysqlservice\\",\\"value\\":\\"mysqld\\"},{\\"id\\":1,\\"name\\":\\"mysql_port\\",\\"value\\":\\"3306\\",\\"locked\\":true},{\\"id\\":2,\\"name\\":\\"dbuser\\",\\"value\\":\\"webapp\\"},{\\"id\\":3,\\"name\\":\\"dbname\\",\\"value\\":\\"ANSAP01\\"},{\\"id\\":4,\\"name\\":\\"upassword\\",\\"value\\":\\"Bond@007\\"},{\\"id\\":5,\\"name\\":\\"masterpassword\\",\\"value\\":\\"MySQL@007\\"}]}]",
29
+ "updated_at": "2021-03-13 00:06:12 +0100",
30
+ }
31
+ `;
32
+
33
+ exports[`ApplicationInstanceSelectors should return columns from applicationInstanceConfData_1 fixtures 1`] = `
34
+ Array [
35
+ Object {
36
+ "cell": Object {
37
+ "formatters": Array [
38
+ null,
39
+ ],
40
+ },
41
+ "header": Object {
42
+ "formatters": Array [
43
+ null,
44
+ ],
45
+ "label": "Hostname",
46
+ "props": Object {
47
+ "index": 0,
48
+ "style": Object {
49
+ "width": "30%",
50
+ },
51
+ },
52
+ },
53
+ "property": "hostname",
54
+ },
55
+ Object {
56
+ "cell": Object {
57
+ "formatters": Array [
58
+ null,
59
+ ],
60
+ },
61
+ "header": Object {
62
+ "formatters": Array [
63
+ null,
64
+ ],
65
+ "label": "Description",
66
+ "props": Object {
67
+ "index": 1,
68
+ "style": Object {
69
+ "width": "30%",
70
+ },
71
+ },
72
+ },
73
+ "property": "description",
74
+ },
75
+ Object {
76
+ "cell": Object {
77
+ "formatters": Array [
78
+ null,
79
+ ],
80
+ },
81
+ "header": Object {
82
+ "formatters": Array [
83
+ null,
84
+ ],
85
+ "label": "Service",
86
+ "props": Object {
87
+ "index": 2,
88
+ "style": Object {
89
+ "width": "20%",
90
+ },
91
+ },
92
+ },
93
+ "property": "service",
94
+ },
95
+ Object {
96
+ "cell": Object {
97
+ "formatters": Array [
98
+ null,
99
+ ],
100
+ },
101
+ "header": Object {
102
+ "formatters": Array [
103
+ null,
104
+ ],
105
+ "label": "Actions",
106
+ "props": Object {
107
+ "index": 4,
108
+ "style": Object {
109
+ "width": "20%",
110
+ },
111
+ },
112
+ },
113
+ "property": "actions",
114
+ },
115
+ ]
116
+ `;
117
+
118
+ exports[`ApplicationInstanceSelectors should return editMode from applicationInstanceConfData_1 fixtures 1`] = `undefined`;
119
+
120
+ exports[`ApplicationInstanceSelectors should return hosts from applicationInstanceConfData_1 fixtures 1`] = `
121
+ Array [
122
+ Object {
123
+ "ansibleParameters": Array [
124
+ Object {
125
+ "id": 0,
126
+ "name": "mysqlservice",
127
+ "value": "mysqld",
128
+ },
129
+ Object {
130
+ "id": 1,
131
+ "name": "mysql_port",
132
+ "value": "3306",
133
+ },
134
+ Object {
135
+ "id": 2,
136
+ "name": "dbuser",
137
+ "value": "webapp",
138
+ },
139
+ Object {
140
+ "id": 3,
141
+ "name": "dbname",
142
+ "value": "ANSAP01",
143
+ },
144
+ Object {
145
+ "id": 4,
146
+ "name": "upassword",
147
+ "value": "Bond@007",
148
+ },
149
+ Object {
150
+ "id": 5,
151
+ "name": "masterpassword",
152
+ "value": "MySQL@007",
153
+ },
154
+ ],
155
+ "description": "",
156
+ "foremanParameters": Array [],
157
+ "hostname": "great-web-app-db-1",
158
+ "id": 4,
159
+ "service": "2",
160
+ },
161
+ Object {
162
+ "ansibleParameters": Array [
163
+ Object {
164
+ "id": 0,
165
+ "name": "dummy_var",
166
+ "value": "0",
167
+ },
168
+ ],
169
+ "description": "",
170
+ "foremanParameters": Array [],
171
+ "hostname": "great-web-app-web-1",
172
+ "id": 1,
173
+ "service": "1",
174
+ },
175
+ Object {
176
+ "ansibleParameters": Array [
177
+ Object {
178
+ "id": 0,
179
+ "name": "dummy_var",
180
+ "value": "0",
181
+ },
182
+ ],
183
+ "description": "",
184
+ "foremanParameters": Array [],
185
+ "hostname": "great-web-app-web-2",
186
+ "id": 2,
187
+ "service": "1",
188
+ },
189
+ ]
190
+ `;
191
+
192
+ exports[`ApplicationInstanceSelectors should return parametersData from applicationInstanceConfData_1 fixtures 1`] = `undefined`;
193
+
194
+ exports[`ApplicationInstanceSelectors should return services from applicationInstanceConfData_1 fixtures 1`] = `
195
+ Array [
196
+ Object {
197
+ "ansibleGroup": "webservers",
198
+ "ansibleParameters": Array [
199
+ Object {
200
+ "id": 0,
201
+ "name": "dummy_var",
202
+ "value": "0",
203
+ },
204
+ ],
205
+ "currentCount": 2,
206
+ "description": "",
207
+ "foremanParameters": Array [
208
+ Object {
209
+ "description": "",
210
+ "id": 1,
211
+ "locked": false,
212
+ "name": "CP",
213
+ "type": "computeprofile",
214
+ "value": "1",
215
+ },
216
+ Object {
217
+ "description": "",
218
+ "id": 2,
219
+ "locked": true,
220
+ "name": "LE",
221
+ "type": "lifecycleenv",
222
+ "value": "1",
223
+ },
224
+ ],
225
+ "hostgroup": "1",
226
+ "id": 1,
227
+ "maxCount": "",
228
+ "minCount": "2",
229
+ "name": "web",
230
+ },
231
+ Object {
232
+ "ansibleGroup": "dbservers",
233
+ "ansibleParameters": Array [
234
+ Object {
235
+ "id": 0,
236
+ "name": "mysqlservice",
237
+ "value": "mysqld",
238
+ },
239
+ Object {
240
+ "id": 1,
241
+ "locked": true,
242
+ "name": "mysql_port",
243
+ "value": "3306",
244
+ },
245
+ Object {
246
+ "id": 2,
247
+ "name": "dbuser",
248
+ "value": "webapp",
249
+ },
250
+ Object {
251
+ "id": 3,
252
+ "name": "dbname",
253
+ "value": "ANSAP01",
254
+ },
255
+ Object {
256
+ "id": 4,
257
+ "name": "upassword",
258
+ "value": "Bond@007",
259
+ },
260
+ Object {
261
+ "id": 5,
262
+ "name": "masterpassword",
263
+ "value": "MySQL@007",
264
+ },
265
+ ],
266
+ "currentCount": 1,
267
+ "description": "",
268
+ "foremanParameters": Array [],
269
+ "hostgroup": "1",
270
+ "id": 2,
271
+ "maxCount": "",
272
+ "minCount": "1",
273
+ "name": "db",
274
+ },
275
+ ]
276
+ `;
@@ -0,0 +1,349 @@
1
+ export const applicationInstanceReportData_1 = {
2
+ name: false,
3
+ error: {
4
+ errorMsg: '',
5
+ status: '',
6
+ statusText: ''
7
+ },
8
+ hosts: [
9
+ {
10
+ id: 8,
11
+ name: 'great-web-app-db-1',
12
+ build: false,
13
+ hostUrl: '/hosts/great-web-app-db-1.deploy3.dev.atix',
14
+ progress_report: [
15
+ {
16
+ id: 'Set up compute instance great-web-app-db-1.deploy3.dev.atix',
17
+ name: 'Set up compute instance great-web-app-db-1.deploy3.dev.atix',
18
+ timestamp: '2021-03-12T09:52:10.190Z',
19
+ status: 'completed',
20
+ priority: 3,
21
+ created: 1615542728.8466988
22
+ },
23
+ {
24
+ id: 'Query instance details for great-web-app-db-1.deploy3.dev.atix',
25
+ name: 'Query instance details for great-web-app-db-1.deploy3.dev.atix',
26
+ timestamp: '2021-03-12T09:52:10.385Z',
27
+ status: 'completed',
28
+ priority: 5,
29
+ created: 1615542728.8474095
30
+ },
31
+ {
32
+ id: 'dhcp_create_192.168.171.103',
33
+ name: 'Create DHCP Settings for great-web-app-db-1.deploy3.dev.atix',
34
+ timestamp: '2021-03-12T09:52:10.584Z',
35
+ status: 'completed',
36
+ priority: 10,
37
+ created: 1615542728.0081317
38
+ },
39
+ {
40
+ id: 'Create IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix',
41
+ name: 'Create IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix',
42
+ timestamp: '2021-03-12T09:52:10.679Z',
43
+ status: 'completed',
44
+ priority: 10,
45
+ created: 1615542728.04177
46
+ },
47
+ {
48
+ id: 'Create Reverse IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix',
49
+ name: 'Create Reverse IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix',
50
+ timestamp: '2021-03-12T09:52:10.798Z',
51
+ status: 'completed',
52
+ priority: 10,
53
+ created: 1615542728.0424814
54
+ },
55
+ {
56
+ id: 'Deploy TFTP PXELinux config for great-web-app-db-1.deploy3.dev.atix',
57
+ name: 'Deploy TFTP PXELinux config for great-web-app-db-1.deploy3.dev.atix',
58
+ timestamp: '2021-03-12T09:52:11.178Z',
59
+ status: 'completed',
60
+ priority: 20,
61
+ created: 1615542728.0881674
62
+ },
63
+ {
64
+ id: 'Deploy TFTP PXEGrub2 config for great-web-app-db-1.deploy3.dev.atix',
65
+ name: 'Deploy TFTP PXEGrub2 config for great-web-app-db-1.deploy3.dev.atix',
66
+ timestamp: '2021-03-12T09:52:11.615Z',
67
+ status: 'completed',
68
+ priority: 20,
69
+ created: 1615542728.0883749
70
+ },
71
+ {
72
+ id: 'Deploy TFTP PXEGrub config for great-web-app-db-1.deploy3.dev.atix',
73
+ name: 'Deploy TFTP PXEGrub config for great-web-app-db-1.deploy3.dev.atix',
74
+ timestamp: '2021-03-12T09:52:11.642Z',
75
+ status: 'completed',
76
+ priority: 20,
77
+ created: 1615542728.088634
78
+ },
79
+ {
80
+ id: 'Deploy TFTP iPXE config for great-web-app-db-1.deploy3.dev.atix',
81
+ name: 'Deploy TFTP iPXE config for great-web-app-db-1.deploy3.dev.atix',
82
+ timestamp: '2021-03-12T09:52:11.874Z',
83
+ status: 'completed',
84
+ priority: 20,
85
+ created: 1615542728.0888274
86
+ },
87
+ {
88
+ id: 'Fetch TFTP boot files for great-web-app-db-1.deploy3.dev.atix',
89
+ name: 'Fetch TFTP boot files for great-web-app-db-1.deploy3.dev.atix',
90
+ timestamp: '2021-03-12T09:52:11.981Z',
91
+ status: 'completed',
92
+ priority: 25,
93
+ created: 1615542728.0894718
94
+ },
95
+ {
96
+ id: 'Power up compute instance great-web-app-db-1.deploy3.dev.atix',
97
+ name: 'Power up compute instance great-web-app-db-1.deploy3.dev.atix',
98
+ timestamp: '2021-03-12T09:52:12.950Z',
99
+ status: 'completed',
100
+ priority: 1000,
101
+ created: 1615542728.8482428
102
+ },
103
+ {
104
+ id: 'Cleanup PuppetCA certificates for great-web-app-db-1.deploy3.dev.atix',
105
+ name: 'Cleanup PuppetCA certificates for great-web-app-db-1.deploy3.dev.atix',
106
+ timestamp: '2021-03-12T09:52:13.390Z',
107
+ status: 'completed',
108
+ priority: 51,
109
+ created: 1615542728.8508224
110
+ },
111
+ {
112
+ id: 'Enable PuppetCA autosigning for great-web-app-db-1.deploy3.dev.atix',
113
+ name: 'Enable PuppetCA autosigning for great-web-app-db-1.deploy3.dev.atix',
114
+ timestamp: '2021-03-12T09:52:13.442Z',
115
+ status: 'completed',
116
+ priority: 55,
117
+ created: 1615542728.8514216
118
+ }
119
+ ],
120
+ powerStatusUrl: '/api/v2/hosts/great-web-app-db-1.deploy3.dev.atix/power'
121
+ },
122
+ {
123
+ id: 9,
124
+ name: 'great-web-app-web-1',
125
+ build: false,
126
+ hostUrl: '/hosts/great-web-app-web-1.deploy3.dev.atix',
127
+ progress_report: [
128
+ {
129
+ id: 'Set up compute instance great-web-app-web-1.deploy3.dev.atix',
130
+ name: 'Set up compute instance great-web-app-web-1.deploy3.dev.atix',
131
+ timestamp: '2021-03-12T09:52:14.825Z',
132
+ status: 'completed',
133
+ priority: 3,
134
+ created: 1615542733.824889
135
+ },
136
+ {
137
+ id: 'Query instance details for great-web-app-web-1.deploy3.dev.atix',
138
+ name: 'Query instance details for great-web-app-web-1.deploy3.dev.atix',
139
+ timestamp: '2021-03-12T09:52:15.007Z',
140
+ status: 'completed',
141
+ priority: 5,
142
+ created: 1615542733.825672
143
+ },
144
+ {
145
+ id: 'dhcp_create_192.168.171.104',
146
+ name: 'Create DHCP Settings for great-web-app-web-1.deploy3.dev.atix',
147
+ timestamp: '2021-03-12T09:52:15.181Z',
148
+ status: 'completed',
149
+ priority: 10,
150
+ created: 1615542733.5710943
151
+ },
152
+ {
153
+ id: 'Create IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix',
154
+ name: 'Create IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix',
155
+ timestamp: '2021-03-12T09:52:15.251Z',
156
+ status: 'completed',
157
+ priority: 10,
158
+ created: 1615542733.599793
159
+ },
160
+ {
161
+ id: 'Create Reverse IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix',
162
+ name: 'Create Reverse IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix',
163
+ timestamp: '2021-03-12T09:52:15.328Z',
164
+ status: 'completed',
165
+ priority: 10,
166
+ created: 1615542733.600369
167
+ },
168
+ {
169
+ id: 'Deploy TFTP PXELinux config for great-web-app-web-1.deploy3.dev.atix',
170
+ name: 'Deploy TFTP PXELinux config for great-web-app-web-1.deploy3.dev.atix',
171
+ timestamp: '2021-03-12T09:52:15.681Z',
172
+ status: 'completed',
173
+ priority: 20,
174
+ created: 1615542733.6356068
175
+ },
176
+ {
177
+ id: 'Deploy TFTP PXEGrub2 config for great-web-app-web-1.deploy3.dev.atix',
178
+ name: 'Deploy TFTP PXEGrub2 config for great-web-app-web-1.deploy3.dev.atix',
179
+ timestamp: '2021-03-12T09:52:16.152Z',
180
+ status: 'completed',
181
+ priority: 20,
182
+ created: 1615542733.635817
183
+ },
184
+ {
185
+ id: 'Deploy TFTP PXEGrub config for great-web-app-web-1.deploy3.dev.atix',
186
+ name: 'Deploy TFTP PXEGrub config for great-web-app-web-1.deploy3.dev.atix',
187
+ timestamp: '2021-03-12T09:52:16.183Z',
188
+ status: 'completed',
189
+ priority: 20,
190
+ created: 1615542733.6360064
191
+ },
192
+ {
193
+ id: 'Deploy TFTP iPXE config for great-web-app-web-1.deploy3.dev.atix',
194
+ name: 'Deploy TFTP iPXE config for great-web-app-web-1.deploy3.dev.atix',
195
+ timestamp: '2021-03-12T09:52:16.417Z',
196
+ status: 'completed',
197
+ priority: 20,
198
+ created: 1615542733.6362345
199
+ },
200
+ {
201
+ id: 'Fetch TFTP boot files for great-web-app-web-1.deploy3.dev.atix',
202
+ name: 'Fetch TFTP boot files for great-web-app-web-1.deploy3.dev.atix',
203
+ timestamp: '2021-03-12T09:52:16.523Z',
204
+ status: 'completed',
205
+ priority: 25,
206
+ created: 1615542733.6365006
207
+ },
208
+ {
209
+ id: 'Power up compute instance great-web-app-web-1.deploy3.dev.atix',
210
+ name: 'Power up compute instance great-web-app-web-1.deploy3.dev.atix',
211
+ timestamp: '2021-03-12T09:52:17.533Z',
212
+ status: 'completed',
213
+ priority: 1000,
214
+ created: 1615542733.8267431
215
+ },
216
+ {
217
+ id: 'Cleanup PuppetCA certificates for great-web-app-web-1.deploy3.dev.atix',
218
+ name: 'Cleanup PuppetCA certificates for great-web-app-web-1.deploy3.dev.atix',
219
+ timestamp: '2021-03-12T09:52:17.944Z',
220
+ status: 'completed',
221
+ priority: 51,
222
+ created: 1615542733.8292165
223
+ },
224
+ {
225
+ id: 'Enable PuppetCA autosigning for great-web-app-web-1.deploy3.dev.atix',
226
+ name: 'Enable PuppetCA autosigning for great-web-app-web-1.deploy3.dev.atix',
227
+ timestamp: '2021-03-12T09:52:17.995Z',
228
+ status: 'completed',
229
+ priority: 55,
230
+ created: 1615542733.8294067
231
+ }
232
+ ],
233
+ powerStatusUrl: '/api/v2/hosts/great-web-app-web-1.deploy3.dev.atix/power'
234
+ },
235
+ {
236
+ id: 10,
237
+ name: 'great-web-app-web-2',
238
+ build: false,
239
+ hostUrl: '/hosts/great-web-app-web-2.deploy3.dev.atix',
240
+ progress_report: [
241
+ {
242
+ id: 'Set up compute instance great-web-app-web-2.deploy3.dev.atix',
243
+ name: 'Set up compute instance great-web-app-web-2.deploy3.dev.atix',
244
+ timestamp: '2021-03-12T09:52:19.221Z',
245
+ status: 'completed',
246
+ priority: 3,
247
+ created: 1615542738.3446305
248
+ },
249
+ {
250
+ id: 'Query instance details for great-web-app-web-2.deploy3.dev.atix',
251
+ name: 'Query instance details for great-web-app-web-2.deploy3.dev.atix',
252
+ timestamp: '2021-03-12T09:52:19.419Z',
253
+ status: 'completed',
254
+ priority: 5,
255
+ created: 1615542738.3449144
256
+ },
257
+ {
258
+ id: 'dhcp_create_192.168.171.105',
259
+ name: 'Create DHCP Settings for great-web-app-web-2.deploy3.dev.atix',
260
+ timestamp: '2021-03-12T09:52:19.668Z',
261
+ status: 'completed',
262
+ priority: 10,
263
+ created: 1615542738.1321318
264
+ },
265
+ {
266
+ id: 'Create IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix',
267
+ name: 'Create IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix',
268
+ timestamp: '2021-03-12T09:52:19.749Z',
269
+ status: 'completed',
270
+ priority: 10,
271
+ created: 1615542738.1576574
272
+ },
273
+ {
274
+ id: 'Create Reverse IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix',
275
+ name: 'Create Reverse IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix',
276
+ timestamp: '2021-03-12T09:52:19.859Z',
277
+ status: 'completed',
278
+ priority: 10,
279
+ created: 1615542738.1582346
280
+ },
281
+ {
282
+ id: 'Deploy TFTP PXELinux config for great-web-app-web-2.deploy3.dev.atix',
283
+ name: 'Deploy TFTP PXELinux config for great-web-app-web-2.deploy3.dev.atix',
284
+ timestamp: '2021-03-12T09:52:20.221Z',
285
+ status: 'completed',
286
+ priority: 20,
287
+ created: 1615542738.1885784
288
+ },
289
+ {
290
+ id: 'Deploy TFTP PXEGrub2 config for great-web-app-web-2.deploy3.dev.atix',
291
+ name: 'Deploy TFTP PXEGrub2 config for great-web-app-web-2.deploy3.dev.atix',
292
+ timestamp: '2021-03-12T09:52:20.604Z',
293
+ status: 'completed',
294
+ priority: 20,
295
+ created: 1615542738.1888642
296
+ },
297
+ {
298
+ id: 'Deploy TFTP PXEGrub config for great-web-app-web-2.deploy3.dev.atix',
299
+ name: 'Deploy TFTP PXEGrub config for great-web-app-web-2.deploy3.dev.atix',
300
+ timestamp: '2021-03-12T09:52:20.636Z',
301
+ status: 'completed',
302
+ priority: 20,
303
+ created: 1615542738.1890883
304
+ },
305
+ {
306
+ id: 'Deploy TFTP iPXE config for great-web-app-web-2.deploy3.dev.atix',
307
+ name: 'Deploy TFTP iPXE config for great-web-app-web-2.deploy3.dev.atix',
308
+ timestamp: '2021-03-12T09:52:20.895Z',
309
+ status: 'completed',
310
+ priority: 20,
311
+ created: 1615542738.1892834
312
+ },
313
+ {
314
+ id: 'Fetch TFTP boot files for great-web-app-web-2.deploy3.dev.atix',
315
+ name: 'Fetch TFTP boot files for great-web-app-web-2.deploy3.dev.atix',
316
+ timestamp: '2021-03-12T09:52:20.992Z',
317
+ status: 'completed',
318
+ priority: 25,
319
+ created: 1615542738.1898031
320
+ },
321
+ {
322
+ id: 'Power up compute instance great-web-app-web-2.deploy3.dev.atix',
323
+ name: 'Power up compute instance great-web-app-web-2.deploy3.dev.atix',
324
+ timestamp: '2021-03-12T09:52:21.864Z',
325
+ status: 'completed',
326
+ priority: 1000,
327
+ created: 1615542738.3453662
328
+ },
329
+ {
330
+ id: 'Cleanup PuppetCA certificates for great-web-app-web-2.deploy3.dev.atix',
331
+ name: 'Cleanup PuppetCA certificates for great-web-app-web-2.deploy3.dev.atix',
332
+ timestamp: '2021-03-12T09:52:22.316Z',
333
+ status: 'completed',
334
+ priority: 51,
335
+ created: 1615542738.34748
336
+ },
337
+ {
338
+ id: 'Enable PuppetCA autosigning for great-web-app-web-2.deploy3.dev.atix',
339
+ name: 'Enable PuppetCA autosigning for great-web-app-web-2.deploy3.dev.atix',
340
+ timestamp: '2021-03-12T09:52:22.368Z',
341
+ status: 'completed',
342
+ priority: 55,
343
+ created: 1615542738.3476808
344
+ }
345
+ ],
346
+ powerStatusUrl: '/api/v2/hosts/great-web-app-web-2.deploy3.dev.atix/power'
347
+ }
348
+ ]
349
+ }