foreman_ansible 7.0.4 → 8.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/ansible_playbooks_controller.rb +66 -0
- data/app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb +5 -1
- data/app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb +3 -1
- data/app/graphql/presenters/ansible_role_presenter.rb +4 -0
- data/app/graphql/types/ansible_role.rb +1 -0
- data/app/graphql/types/inherited_ansible_role.rb +4 -0
- data/app/helpers/foreman_ansible/hosts_helper.rb +19 -0
- data/app/jobs/sync_playbooks.rb +25 -0
- data/app/lib/proxy_api/ansible.rb +13 -0
- data/app/services/foreman_ansible/import_playbooks_error_notification.rb +38 -0
- data/app/services/foreman_ansible/import_playbooks_success_notification.rb +33 -0
- data/app/services/foreman_ansible/playbooks_importer.rb +73 -0
- data/app/services/foreman_ansible/proxy_api.rb +3 -4
- data/app/services/foreman_ansible/variables_importer.rb +9 -9
- data/app/views/ansible_roles/index.html.erb +2 -0
- data/app/views/api/v2/ansible_playbooks/sync.json.rabl +5 -0
- data/app/views/api/v2/hostgroups/ansible_roles.json.rabl +9 -1
- data/app/views/api/v2/hosts/ansible_roles.json.rabl +9 -1
- data/app/views/foreman_ansible/job_templates/ansible_roles_-_install_from_git.erb +4 -1
- data/app/views/foreman_ansible/job_templates/ansible_windows_updates.erb +160 -0
- data/config/routes.rb +10 -3
- data/db/migrate/20200421201839_update_ansible_inv_template_name.rb +1 -5
- data/db/seeds.d/90_notification_blueprints.rb +14 -0
- data/lib/foreman_ansible/engine.rb +0 -1
- data/lib/foreman_ansible/register.rb +9 -3
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/action_names.rb +4 -3
- data/locale/ca/foreman_ansible.edit.po +1162 -0
- data/locale/ca/foreman_ansible.po +360 -45
- data/{webpack/components/withPagination.js → locale/ca/foreman_ansible.po.time_stamp} +0 -0
- data/locale/cs_CZ/foreman_ansible.edit.po +1207 -0
- data/locale/cs_CZ/foreman_ansible.po +372 -57
- data/locale/cs_CZ/foreman_ansible.po.time_stamp +0 -0
- data/locale/de/foreman_ansible.edit.po +1148 -0
- data/locale/de/foreman_ansible.po +355 -40
- data/locale/de/foreman_ansible.po.time_stamp +0 -0
- data/locale/en/foreman_ansible.edit.po +1146 -0
- data/locale/en/foreman_ansible.po +355 -40
- data/locale/en/foreman_ansible.po.time_stamp +0 -0
- data/locale/en_GB/foreman_ansible.edit.po +1155 -0
- data/locale/en_GB/foreman_ansible.po +357 -42
- data/locale/en_GB/foreman_ansible.po.time_stamp +0 -0
- data/locale/es/foreman_ansible.edit.po +1148 -0
- data/locale/es/foreman_ansible.po +355 -40
- data/locale/es/foreman_ansible.po.time_stamp +0 -0
- data/locale/foreman_ansible.pot +767 -263
- data/locale/fr/foreman_ansible.edit.po +1148 -0
- data/locale/fr/foreman_ansible.po +355 -40
- data/locale/fr/foreman_ansible.po.time_stamp +0 -0
- data/locale/gl/foreman_ansible.edit.po +1156 -0
- data/locale/gl/foreman_ansible.po +358 -43
- data/locale/gl/foreman_ansible.po.time_stamp +0 -0
- data/locale/it/foreman_ansible.edit.po +1148 -0
- data/locale/it/foreman_ansible.po +355 -40
- data/locale/it/foreman_ansible.po.time_stamp +0 -0
- data/locale/ja/foreman_ansible.edit.po +1148 -0
- data/locale/ja/foreman_ansible.po +355 -40
- data/locale/ja/foreman_ansible.po.time_stamp +0 -0
- data/locale/ko/foreman_ansible.edit.po +1148 -0
- data/locale/ko/foreman_ansible.po +355 -40
- data/locale/ko/foreman_ansible.po.time_stamp +0 -0
- data/locale/nl_NL/foreman_ansible.edit.po +1168 -0
- data/locale/nl_NL/foreman_ansible.po +359 -44
- data/locale/nl_NL/foreman_ansible.po.time_stamp +0 -0
- data/locale/pl/foreman_ansible.edit.po +1180 -0
- data/locale/pl/foreman_ansible.po +363 -48
- data/locale/pl/foreman_ansible.po.time_stamp +0 -0
- data/locale/pt_BR/foreman_ansible.edit.po +1148 -0
- data/locale/pt_BR/foreman_ansible.po +355 -40
- data/locale/pt_BR/foreman_ansible.po.time_stamp +0 -0
- data/locale/ru/foreman_ansible.edit.po +1149 -0
- data/locale/ru/foreman_ansible.po +355 -40
- data/locale/ru/foreman_ansible.po.time_stamp +0 -0
- data/locale/sv_SE/foreman_ansible.edit.po +1180 -0
- data/locale/sv_SE/foreman_ansible.po +363 -48
- data/locale/sv_SE/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_ansible.edit.po +1148 -0
- data/locale/zh_CN/foreman_ansible.po +355 -40
- data/locale/zh_CN/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_ansible.edit.po +1148 -0
- data/locale/zh_TW/foreman_ansible.po +355 -40
- data/locale/zh_TW/foreman_ansible.po.time_stamp +0 -0
- data/test/fixtures/playbooks_example_output.json +1 -0
- data/test/fixtures/sample_playbooks.json +10 -0
- data/test/functional/api/v2/ansible_playbooks_controller_test.rb +65 -0
- data/test/functional/hosts_controller_test.rb +2 -2
- data/test/graphql/queries/host_ansible_roles_query_test.rb +61 -0
- data/test/unit/import_playbooks_test.rb +51 -0
- data/test/unit/lib/proxy_api/ansible_test.rb +6 -0
- data/webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js +58 -75
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js +44 -58
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js.orig +151 -0
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js +43 -56
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js +1 -1
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesForm.js +26 -24
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js +3 -2
- data/webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js +39 -43
- data/webpack/components/AnsibleHostDetail/components/RolesTab/__test__/RolesTab.fixtures.js +30 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariables.js +27 -38
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js +2 -1
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesConstants.js +1 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesSelectors.js +6 -0
- data/webpack/components/AnsibleRolesAndVariables/index.js +7 -1
- data/webpack/components/AnsibleRolesSwitcher/__tests__/AnsibleRolesSwitcher.test.js +0 -2
- data/webpack/components/AnsibleRolesSwitcher/components/AnsibleRole.js +3 -12
- data/webpack/components/AnsibleRolesSwitcher/components/AvailableRolesList.js +2 -2
- data/webpack/components/AnsibleRolesSwitcher/components/OrderedRolesTooltip.js +11 -12
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AnsibleRole.test.js.snap +6 -20
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AvailableRolesList.test.js.snap +9 -6
- data/webpack/components/withLoading.js +7 -12
- data/webpack/graphql/queries/allAnsibleRoles.gql +3 -0
- data/webpack/graphql/queries/hostAnsibleRoles.gql +3 -0
- data/webpack/helpers/pageParamsHelper.js +3 -3
- metadata +87 -34
- data/app/helpers/foreman_ansible/hosts_helper_extensions.rb +0 -30
- data/webpack/helpers/paginationHelper.js +0 -9
@@ -17,12 +17,21 @@ msgstr ""
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18
18
|
"\n"
|
19
19
|
|
20
|
+
msgid "%(selectedCount)s of %(totalCount)s items selected"
|
21
|
+
msgstr ""
|
22
|
+
|
20
23
|
msgid "%s ago"
|
21
24
|
msgstr ""
|
22
25
|
|
23
26
|
msgid "%{cfgmgmt} out of sync disabled"
|
24
27
|
msgstr ""
|
25
28
|
|
29
|
+
msgid "(from host group)"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "A comma separated list of tags to use for Ansible run"
|
33
|
+
msgstr ""
|
34
|
+
|
26
35
|
msgid "Action with sub plans"
|
27
36
|
msgstr ""
|
28
37
|
|
@@ -32,31 +41,70 @@ msgstr ""
|
|
32
41
|
msgid "Add"
|
33
42
|
msgstr ""
|
34
43
|
|
44
|
+
msgid "Add all"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
msgid "Add selected"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
msgid "Add, remove or reorder host assigned Ansible roles. This host has also group assigned roles that are not displayed here and will always be executed prior to host assigned roles"
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
msgid "All assigned Ansible roles"
|
54
|
+
msgstr ""
|
55
|
+
|
35
56
|
msgid "Ansible"
|
36
57
|
msgstr ""
|
37
58
|
|
59
|
+
msgid "Ansible playbooks names to be synced"
|
60
|
+
msgstr ""
|
61
|
+
|
38
62
|
msgid "Ansible Role"
|
39
63
|
msgstr ""
|
40
64
|
|
41
65
|
msgid "Ansible Roles"
|
42
66
|
msgstr ""
|
43
67
|
|
68
|
+
msgid "Ansible Roles were successfully assigned."
|
69
|
+
msgstr ""
|
70
|
+
|
44
71
|
msgid "Ansible Variable Details"
|
45
72
|
msgstr ""
|
46
73
|
|
47
74
|
msgid "Ansible Variable Details (Imported)"
|
48
75
|
msgstr ""
|
49
76
|
|
77
|
+
msgid "Ansible Variable not found by id: %s"
|
78
|
+
msgstr ""
|
79
|
+
|
50
80
|
msgid "Ansible Variables"
|
51
81
|
msgstr ""
|
52
82
|
|
83
|
+
msgid "Ansible check mode"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "Ansible job was successfully canceled."
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
msgid "Ansible job was successfully created."
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
msgid "Ansible provider specific inputs"
|
93
|
+
msgstr ""
|
94
|
+
|
53
95
|
msgid "Ansible report timeout"
|
54
96
|
msgstr ""
|
55
97
|
|
56
98
|
msgid "Ansible role"
|
57
99
|
msgstr ""
|
58
100
|
|
59
|
-
msgid "Ansible role names to
|
101
|
+
msgid "Ansible role names to be imported"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
msgid "Ansible role names to be synced"
|
105
|
+
msgstr ""
|
106
|
+
|
107
|
+
msgid "Ansible roles assigned directly to host"
|
60
108
|
msgstr ""
|
61
109
|
|
62
110
|
msgid "Ansible roles to assign to a host"
|
@@ -65,13 +113,31 @@ msgstr ""
|
|
65
113
|
msgid "Ansible roles to assign to a hostgroup"
|
66
114
|
msgstr ""
|
67
115
|
|
116
|
+
msgid "Ansible roles to ignore"
|
117
|
+
msgstr ""
|
118
|
+
|
68
119
|
msgid "Ansible support in Foreman"
|
69
120
|
msgstr ""
|
70
121
|
|
122
|
+
msgid "Ansible variable override successfully changed."
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
msgid "Ansible variable override was successfully deleted."
|
126
|
+
msgstr ""
|
127
|
+
|
71
128
|
msgid "Ansible: Run Insights maintenance plan"
|
72
129
|
msgstr ""
|
73
130
|
|
74
|
-
msgid "
|
131
|
+
msgid "Are you sure you want to cancel Ansible config job?"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
msgid "Are you sure you want to delete override for %s?"
|
135
|
+
msgstr ""
|
136
|
+
|
137
|
+
msgid "Assign Ansible roles"
|
138
|
+
msgstr ""
|
139
|
+
|
140
|
+
msgid "Assigned Ansible Roles"
|
75
141
|
msgstr ""
|
76
142
|
|
77
143
|
msgid "Assigns Ansible roles to a host"
|
@@ -80,6 +146,12 @@ msgstr ""
|
|
80
146
|
msgid "Assigns Ansible roles to a hostgroup"
|
81
147
|
msgstr ""
|
82
148
|
|
149
|
+
msgid "Available Ansible Roles"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
msgid "Available Ansible roles"
|
153
|
+
msgstr ""
|
154
|
+
|
83
155
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
84
156
|
msgstr ""
|
85
157
|
|
@@ -89,28 +161,25 @@ msgstr ""
|
|
89
161
|
msgid "Cancel"
|
90
162
|
msgstr ""
|
91
163
|
|
92
|
-
msgid "
|
164
|
+
msgid "Cancel Ansible config job"
|
93
165
|
msgstr ""
|
94
166
|
|
95
|
-
msgid "Changed Ansible
|
167
|
+
msgid "Changed Ansible roles"
|
96
168
|
msgstr ""
|
97
169
|
|
98
|
-
msgid "
|
170
|
+
msgid "Clone"
|
99
171
|
msgstr ""
|
100
172
|
|
101
|
-
msgid "
|
173
|
+
msgid "Close"
|
102
174
|
msgstr ""
|
103
175
|
|
104
|
-
msgid "
|
176
|
+
msgid "Configure Ansible Job"
|
105
177
|
msgstr ""
|
106
178
|
|
107
|
-
msgid "
|
179
|
+
msgid "Configure Recurring Job"
|
108
180
|
msgstr ""
|
109
181
|
|
110
|
-
msgid "
|
111
|
-
msgstr ""
|
112
|
-
|
113
|
-
msgid "Clone"
|
182
|
+
msgid "Confirm"
|
114
183
|
msgstr ""
|
115
184
|
|
116
185
|
msgid "Connection type"
|
@@ -131,33 +200,60 @@ msgstr ""
|
|
131
200
|
msgid "Create an override value for a specific ansible variable"
|
132
201
|
msgstr ""
|
133
202
|
|
203
|
+
msgid "DEPRECATED: Import Ansible roles"
|
204
|
+
msgstr ""
|
205
|
+
|
206
|
+
msgid "DEPRECATED: Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
207
|
+
msgstr ""
|
208
|
+
|
209
|
+
msgid "DEPRECATED: Obsolete Ansible roles"
|
210
|
+
msgstr ""
|
211
|
+
|
212
|
+
msgid "DEPRECATED: Obsolete Ansible variables. This will only obsolete variables for already existing roles, it will not delete any old roles"
|
213
|
+
msgstr ""
|
214
|
+
|
134
215
|
msgid "Default Ansible inventory report template"
|
135
216
|
msgstr ""
|
136
217
|
|
137
218
|
msgid "Default Behavior"
|
138
219
|
msgstr ""
|
139
220
|
|
221
|
+
msgid "Default value"
|
222
|
+
msgstr ""
|
223
|
+
|
140
224
|
msgid "Default value of variable"
|
141
225
|
msgstr ""
|
142
226
|
|
143
227
|
msgid "Default verbosity level"
|
144
228
|
msgstr ""
|
145
229
|
|
230
|
+
msgid "Delete"
|
231
|
+
msgstr ""
|
232
|
+
|
146
233
|
msgid "Delete %s?"
|
147
234
|
msgstr ""
|
148
235
|
|
236
|
+
msgid "Delete Ansible variable override"
|
237
|
+
msgstr ""
|
238
|
+
|
149
239
|
msgid "Deletes Ansible role"
|
150
240
|
msgstr ""
|
151
241
|
|
152
242
|
msgid "Deletes Ansible variable"
|
153
243
|
msgstr ""
|
154
244
|
|
245
|
+
msgid "Description"
|
246
|
+
msgstr ""
|
247
|
+
|
155
248
|
msgid "Description of variable"
|
156
249
|
msgstr ""
|
157
250
|
|
158
251
|
msgid "Destroy an override value"
|
159
252
|
msgstr ""
|
160
253
|
|
254
|
+
msgid "Directly assigned to Host"
|
255
|
+
msgstr ""
|
256
|
+
|
161
257
|
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
162
258
|
msgstr ""
|
163
259
|
|
@@ -167,16 +263,34 @@ msgstr ""
|
|
167
263
|
msgid "Edit %s"
|
168
264
|
msgstr ""
|
169
265
|
|
266
|
+
msgid "Edit Ansible Roles"
|
267
|
+
msgstr ""
|
268
|
+
|
170
269
|
msgid "Edit Ansible Variable"
|
171
270
|
msgstr ""
|
172
271
|
|
272
|
+
msgid "Edit Ansible roles"
|
273
|
+
msgstr ""
|
274
|
+
|
275
|
+
msgid "Enable web console"
|
276
|
+
msgstr ""
|
277
|
+
|
173
278
|
msgid "Enable/disable WinRM server certificate validation when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_winrm_server_cert_validation\""
|
174
279
|
msgstr ""
|
175
280
|
|
176
|
-
msgid "Error
|
281
|
+
msgid "Error!"
|
282
|
+
msgstr ""
|
283
|
+
|
284
|
+
msgid "Executed at"
|
285
|
+
msgstr ""
|
286
|
+
|
287
|
+
msgid "Failed to import roles and variables "
|
177
288
|
msgstr ""
|
178
289
|
|
179
|
-
msgid "Fetch Ansible
|
290
|
+
msgid "Fetch Ansible playbooks available to be synced"
|
291
|
+
msgstr ""
|
292
|
+
|
293
|
+
msgid "Fetch Ansible roles available to be synced"
|
180
294
|
msgstr ""
|
181
295
|
|
182
296
|
msgid "Foreman"
|
@@ -197,19 +311,19 @@ msgstr ""
|
|
197
311
|
msgid "Hide all values for this parameter."
|
198
312
|
msgstr ""
|
199
313
|
|
200
|
-
msgid "Host
|
314
|
+
msgid "Host assigned Ansible roles"
|
201
315
|
msgstr ""
|
202
316
|
|
203
|
-
msgid "
|
317
|
+
msgid "Host group has no associated hosts"
|
204
318
|
msgstr ""
|
205
319
|
|
206
|
-
msgid "
|
320
|
+
msgid "Host not found by id: %s"
|
207
321
|
msgstr ""
|
208
322
|
|
209
|
-
msgid "
|
323
|
+
msgid "Hostgroups"
|
210
324
|
msgstr ""
|
211
325
|
|
212
|
-
msgid "Hosts
|
326
|
+
msgid "Hosts"
|
213
327
|
msgstr ""
|
214
328
|
|
215
329
|
msgid "IDs of associated ansible roles"
|
@@ -233,13 +347,10 @@ msgstr ""
|
|
233
347
|
msgid "Import"
|
234
348
|
msgstr ""
|
235
349
|
|
236
|
-
msgid "Import
|
237
|
-
msgstr ""
|
238
|
-
|
239
|
-
msgid "Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
350
|
+
msgid "Import Puppet classes"
|
240
351
|
msgstr ""
|
241
352
|
|
242
|
-
msgid "Import
|
353
|
+
msgid "Import Role"
|
243
354
|
msgstr ""
|
244
355
|
|
245
356
|
msgid "Import facts"
|
@@ -248,7 +359,16 @@ msgstr ""
|
|
248
359
|
msgid "Import from %s"
|
249
360
|
msgstr ""
|
250
361
|
|
251
|
-
msgid "Import
|
362
|
+
msgid "Import playbooks has finished successfully"
|
363
|
+
msgstr ""
|
364
|
+
|
365
|
+
msgid "Import roles And Variables"
|
366
|
+
msgstr ""
|
367
|
+
|
368
|
+
msgid "Import roles and variables has finished successfully"
|
369
|
+
msgstr ""
|
370
|
+
|
371
|
+
msgid "Import roles and variables started: "
|
252
372
|
msgstr ""
|
253
373
|
|
254
374
|
msgid "Imported at"
|
@@ -263,9 +383,27 @@ msgstr ""
|
|
263
383
|
msgid "Include default value when merging all matching values."
|
264
384
|
msgstr ""
|
265
385
|
|
386
|
+
msgid "Include/Exclude Tags"
|
387
|
+
msgstr ""
|
388
|
+
|
389
|
+
msgid "Include\\Exclude tags for Ansible run"
|
390
|
+
msgstr ""
|
391
|
+
|
392
|
+
msgid "Inherited from Hostgroup"
|
393
|
+
msgstr ""
|
394
|
+
|
266
395
|
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
267
396
|
msgstr ""
|
268
397
|
|
398
|
+
msgid "Invalid, expected one of: %s"
|
399
|
+
msgstr ""
|
400
|
+
|
401
|
+
msgid "Invalid, expected to match a regex: %s"
|
402
|
+
msgstr ""
|
403
|
+
|
404
|
+
msgid "Inventory"
|
405
|
+
msgstr ""
|
406
|
+
|
269
407
|
msgid "Job Details"
|
270
408
|
msgstr ""
|
271
409
|
|
@@ -311,7 +449,7 @@ msgstr ""
|
|
311
449
|
msgid "Message"
|
312
450
|
msgstr ""
|
313
451
|
|
314
|
-
msgid "
|
452
|
+
msgid "Must not be in the past"
|
315
453
|
msgstr ""
|
316
454
|
|
317
455
|
msgid "Name"
|
@@ -323,42 +461,60 @@ msgstr ""
|
|
323
461
|
msgid "Nest"
|
324
462
|
msgstr ""
|
325
463
|
|
326
|
-
msgid "New"
|
464
|
+
msgid "New Ansible Variable"
|
327
465
|
msgstr ""
|
328
466
|
|
329
|
-
msgid "
|
467
|
+
msgid "Next Run"
|
330
468
|
msgstr ""
|
331
469
|
|
332
470
|
msgid ""
|
333
|
-
"No
|
471
|
+
"No Ansible Roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
334
472
|
" you have to import them first."
|
335
473
|
msgstr ""
|
336
474
|
|
337
|
-
msgid "No
|
475
|
+
msgid "No Ansible roles assigned"
|
476
|
+
msgstr ""
|
477
|
+
|
478
|
+
msgid "No Ansible variables found for Host"
|
479
|
+
msgstr ""
|
480
|
+
|
481
|
+
msgid "No added or removed roles nor variables detected on %s."
|
482
|
+
msgstr ""
|
483
|
+
|
484
|
+
msgid "No added or removed roles nor variables."
|
485
|
+
msgstr ""
|
486
|
+
|
487
|
+
msgid "No additional data"
|
338
488
|
msgstr ""
|
339
489
|
|
340
|
-
msgid "No changes in
|
490
|
+
msgid "No changes detected in specified Ansible Roles and their variables"
|
341
491
|
msgstr ""
|
342
492
|
|
343
493
|
msgid "No changes in variables detected on %s."
|
344
494
|
msgstr ""
|
345
495
|
|
496
|
+
msgid "No config job for Ansible roles scheduled"
|
497
|
+
msgstr ""
|
498
|
+
|
499
|
+
msgid "No previous job executions found"
|
500
|
+
msgstr ""
|
501
|
+
|
346
502
|
msgid "No proxy found to import variables from, ensure that the smart proxy has the Ansible feature enabled."
|
347
503
|
msgstr ""
|
348
504
|
|
349
|
-
msgid "Nothing
|
505
|
+
msgid "Nothing Found!"
|
350
506
|
msgstr ""
|
351
507
|
|
352
|
-
msgid "
|
508
|
+
msgid "Nothing to show"
|
353
509
|
msgstr ""
|
354
510
|
|
355
|
-
msgid "
|
511
|
+
msgid "Notice that ansible roles run in check mode."
|
356
512
|
msgstr ""
|
357
513
|
|
358
|
-
msgid "
|
514
|
+
msgid "Number of tasks which should be sent to the smart proxy in one request, if foreman_tasks_proxy_batch_trigger is enabled. If set, overrides foreman_tasks_proxy_batch_size setting for Ansible jobs."
|
359
515
|
msgstr ""
|
360
516
|
|
361
|
-
msgid "
|
517
|
+
msgid "Only variables marked to Override are shown here."
|
362
518
|
msgstr ""
|
363
519
|
|
364
520
|
msgid "Optional Input Validator"
|
@@ -379,9 +535,27 @@ msgstr ""
|
|
379
535
|
msgid "Overriden"
|
380
536
|
msgstr ""
|
381
537
|
|
538
|
+
msgid "Permission Denied"
|
539
|
+
msgstr ""
|
540
|
+
|
541
|
+
msgid "Permission denied"
|
542
|
+
msgstr ""
|
543
|
+
|
544
|
+
msgid "Playbooks"
|
545
|
+
msgstr ""
|
546
|
+
|
547
|
+
msgid "Please request one of the required permissions listed below from a Foreman administrator:"
|
548
|
+
msgstr ""
|
549
|
+
|
382
550
|
msgid "Post-provision timeout"
|
383
551
|
msgstr ""
|
384
552
|
|
553
|
+
msgid "Preupgrade job"
|
554
|
+
msgstr ""
|
555
|
+
|
556
|
+
msgid "Previously executed jobs"
|
557
|
+
msgstr ""
|
558
|
+
|
385
559
|
msgid "Prioritize Attribute Order"
|
386
560
|
msgstr ""
|
387
561
|
|
@@ -391,6 +565,9 @@ msgstr ""
|
|
391
565
|
msgid "Proxy not found"
|
392
566
|
msgstr ""
|
393
567
|
|
568
|
+
msgid "Proxy tasks batch size for Ansible"
|
569
|
+
msgstr ""
|
570
|
+
|
394
571
|
msgid "Remediation Plan"
|
395
572
|
msgstr ""
|
396
573
|
|
@@ -400,12 +577,27 @@ msgstr ""
|
|
400
577
|
msgid "Remove"
|
401
578
|
msgstr ""
|
402
579
|
|
580
|
+
msgid "Remove Role"
|
581
|
+
msgstr ""
|
582
|
+
|
583
|
+
msgid "Remove all"
|
584
|
+
msgstr ""
|
585
|
+
|
403
586
|
msgid "Remove duplicate values (only array type)"
|
404
587
|
msgstr ""
|
405
588
|
|
589
|
+
msgid "Remove selected"
|
590
|
+
msgstr ""
|
591
|
+
|
406
592
|
msgid "Report format, defaults to '%s'"
|
407
593
|
msgstr ""
|
408
594
|
|
595
|
+
msgid "Request the following permissions from administrator: %s."
|
596
|
+
msgstr ""
|
597
|
+
|
598
|
+
msgid "Result"
|
599
|
+
msgstr ""
|
600
|
+
|
409
601
|
msgid "Role ID"
|
410
602
|
msgstr ""
|
411
603
|
|
@@ -427,6 +619,9 @@ msgstr ""
|
|
427
619
|
msgid "Run an Ansible playbook against given hosts"
|
428
620
|
msgstr ""
|
429
621
|
|
622
|
+
msgid "Run an Ansible playbook to enable web console on given hosts"
|
623
|
+
msgstr ""
|
624
|
+
|
430
625
|
msgid "Run playbook"
|
431
626
|
msgstr ""
|
432
627
|
|
@@ -448,10 +643,16 @@ msgstr ""
|
|
448
643
|
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
449
644
|
msgstr ""
|
450
645
|
|
646
|
+
msgid "Schedule"
|
647
|
+
msgstr ""
|
648
|
+
|
451
649
|
msgid "Schedule generating of Ansible Inventory report"
|
452
650
|
msgstr ""
|
453
651
|
|
454
|
-
msgid "
|
652
|
+
msgid "Schedule recurring job"
|
653
|
+
msgstr ""
|
654
|
+
|
655
|
+
msgid "Scheduled recurring jobs"
|
455
656
|
msgstr ""
|
456
657
|
|
457
658
|
msgid "Set the order in which values are resolved."
|
@@ -475,12 +676,42 @@ msgstr ""
|
|
475
676
|
msgid "Smart Proxy to import from"
|
476
677
|
msgstr ""
|
477
678
|
|
679
|
+
msgid "Smart Proxy to sync from"
|
680
|
+
msgstr ""
|
681
|
+
|
478
682
|
msgid "Smart proxy id is required"
|
479
683
|
msgstr ""
|
480
684
|
|
685
|
+
msgid "Source"
|
686
|
+
msgstr ""
|
687
|
+
|
688
|
+
msgid "Source attribute"
|
689
|
+
msgstr ""
|
690
|
+
|
481
691
|
msgid "Specify Matchers"
|
482
692
|
msgstr ""
|
483
693
|
|
694
|
+
msgid "State"
|
695
|
+
msgstr ""
|
696
|
+
|
697
|
+
msgid "Submit"
|
698
|
+
msgstr ""
|
699
|
+
|
700
|
+
msgid "Sync Ansible playbooks"
|
701
|
+
msgstr ""
|
702
|
+
|
703
|
+
msgid "Sync Ansible roles"
|
704
|
+
msgstr ""
|
705
|
+
|
706
|
+
msgid "Tags"
|
707
|
+
msgstr ""
|
708
|
+
|
709
|
+
msgid "Task"
|
710
|
+
msgstr ""
|
711
|
+
|
712
|
+
msgid "Task Details"
|
713
|
+
msgstr ""
|
714
|
+
|
484
715
|
msgid "The order in which matchers keys are processed, first match wins.<br> You may use multiple attributes as a matcher key, for example, an order of <code>host group, environment</code> would expect a matcher such as <code>hostgroup = \"web servers\", environment = production</code>"
|
485
716
|
msgstr ""
|
486
717
|
|
@@ -490,13 +721,37 @@ msgstr ""
|
|
490
721
|
msgid "There are no Ansible roles to play"
|
491
722
|
msgstr ""
|
492
723
|
|
493
|
-
msgid "
|
724
|
+
msgid "There was a following error when assigning Ansible Roles: %s"
|
494
725
|
msgstr ""
|
495
726
|
|
496
|
-
msgid "
|
727
|
+
msgid "There was a following error when changing Ansible variable override: %s"
|
728
|
+
msgstr ""
|
729
|
+
|
730
|
+
msgid "There was a following error when creating Ansible job: %s"
|
731
|
+
msgstr ""
|
732
|
+
|
733
|
+
msgid "There was a following error when deleting Ansible config job: %s"
|
734
|
+
msgstr ""
|
735
|
+
|
736
|
+
msgid "There was a following error when deleting Ansible variable override: %s"
|
737
|
+
msgstr ""
|
738
|
+
|
739
|
+
msgid "This Ansible role is inherited from host group"
|
740
|
+
msgstr ""
|
741
|
+
|
742
|
+
msgid "This Ansible role is inherited from parent host group"
|
743
|
+
msgstr ""
|
744
|
+
|
745
|
+
msgid "This list consists of host assigned roles and group assigned roles. Group assigned roles will always be executed prior to host assigned roles"
|
746
|
+
msgstr ""
|
747
|
+
|
748
|
+
msgid "Those roles will be excluded when importing roles from smart proxy, The expected input is comma separated values and you can use * wildcard metacharactersFor example: foo*, *b*,*bar"
|
497
749
|
msgstr ""
|
498
750
|
|
499
|
-
msgid "
|
751
|
+
msgid "Timeout (in minutes) when hosts should have reported."
|
752
|
+
msgstr ""
|
753
|
+
|
754
|
+
msgid "Timeout (in seconds) to set when Foreman will trigger a play Ansible roles task after a host is fully provisioned. Set this to the maximum time you expect a host to take until it is ready after a reboot."
|
500
755
|
msgstr ""
|
501
756
|
|
502
757
|
msgid "Type"
|
@@ -508,6 +763,12 @@ msgstr ""
|
|
508
763
|
msgid "Types of variable values"
|
509
764
|
msgstr ""
|
510
765
|
|
766
|
+
msgid "Unable to get playbook's names from Ansible"
|
767
|
+
msgstr ""
|
768
|
+
|
769
|
+
msgid "Unable to get playbooks from Ansible"
|
770
|
+
msgstr ""
|
771
|
+
|
511
772
|
msgid "Unable to get roles from Ansible"
|
512
773
|
msgstr ""
|
513
774
|
|
@@ -517,9 +778,24 @@ msgstr ""
|
|
517
778
|
msgid "Update"
|
518
779
|
msgstr ""
|
519
780
|
|
781
|
+
msgid "Update Role Variables"
|
782
|
+
msgstr ""
|
783
|
+
|
520
784
|
msgid "Updates Ansible variable"
|
521
785
|
msgstr ""
|
522
786
|
|
787
|
+
msgid "Upgrade Capsules on given Capsule server hosts"
|
788
|
+
msgstr ""
|
789
|
+
|
790
|
+
msgid "Upgrade Capsules on given hosts"
|
791
|
+
msgstr ""
|
792
|
+
|
793
|
+
msgid "Use drag and drop to change order of the roles. Ordering of roles is respected for Ansible runs, inherited roles are always before those assigned directly"
|
794
|
+
msgstr ""
|
795
|
+
|
796
|
+
msgid "Use sync instead, to sync roles from Smart Proxy with Ansible feature enabled"
|
797
|
+
msgstr ""
|
798
|
+
|
523
799
|
msgid "Use this connection type by default when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_connection\""
|
524
800
|
msgstr ""
|
525
801
|
|
@@ -529,6 +805,9 @@ msgstr ""
|
|
529
805
|
msgid "Used to enforce certain values for the parameter values"
|
530
806
|
msgstr ""
|
531
807
|
|
808
|
+
msgid "Value"
|
809
|
+
msgstr ""
|
810
|
+
|
532
811
|
msgid "Value to use when there is no match."
|
533
812
|
msgstr ""
|
534
813
|
|
@@ -549,3 +828,39 @@ msgstr ""
|
|
549
828
|
|
550
829
|
msgid "WinRM cert Validation"
|
551
830
|
msgstr ""
|
831
|
+
|
832
|
+
msgid "You are not authorized to perform this action."
|
833
|
+
msgstr ""
|
834
|
+
|
835
|
+
msgid "You are not authorized to view the page. "
|
836
|
+
msgstr ""
|
837
|
+
|
838
|
+
msgid "can't be blank"
|
839
|
+
msgstr ""
|
840
|
+
|
841
|
+
msgid "daily"
|
842
|
+
msgstr ""
|
843
|
+
|
844
|
+
msgid "false"
|
845
|
+
msgstr ""
|
846
|
+
|
847
|
+
msgid "hourly"
|
848
|
+
msgstr ""
|
849
|
+
|
850
|
+
msgid "is required"
|
851
|
+
msgstr ""
|
852
|
+
|
853
|
+
msgid "monthly"
|
854
|
+
msgstr ""
|
855
|
+
|
856
|
+
msgid "true"
|
857
|
+
msgstr ""
|
858
|
+
|
859
|
+
msgid "view all assigned roles"
|
860
|
+
msgstr ""
|
861
|
+
|
862
|
+
msgid "view the task in progress"
|
863
|
+
msgstr ""
|
864
|
+
|
865
|
+
msgid "weekly"
|
866
|
+
msgstr ""
|
File without changes
|