foreman_ansible 2.2.14 → 2.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +2 -0
- data/app/controllers/ansible_roles_controller.rb +4 -11
- data/app/controllers/ansible_variables_controller.rb +80 -0
- data/app/controllers/api/v2/ansible_roles_controller.rb +2 -0
- data/app/controllers/api/v2/ansible_variables_controller.rb +68 -0
- data/app/controllers/concerns/foreman/controller/parameters/ansible_variable.rb +36 -0
- data/app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/api/v2/hosts_param_group_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/concerns/hostgroups_controller_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/concerns/hosts_controller_extensions.rb +2 -0
- data/app/controllers/foreman_ansible/concerns/import_controller_helper.rb +24 -0
- data/app/controllers/foreman_ansible/concerns/job_invocation_helper.rb +2 -0
- data/app/helpers/foreman_ansible/ansible_plugin_helper.rb +2 -0
- data/app/helpers/foreman_ansible/ansible_reports_helper.rb +6 -4
- data/app/helpers/foreman_ansible/ansible_roles_helper.rb +2 -0
- data/app/helpers/foreman_ansible/hosts_helper_extensions.rb +2 -0
- data/app/lib/actions/foreman_ansible/helpers/host_common.rb +2 -0
- data/app/lib/actions/foreman_ansible/helpers/play_roles_description.rb +2 -0
- data/app/lib/proxy_api/ansible.rb +16 -0
- data/app/models/ansible_role.rb +5 -0
- data/app/models/ansible_variable.rb +23 -0
- data/app/models/concerns/foreman_ansible/host_managed_extensions.rb +3 -1
- data/app/models/concerns/foreman_ansible/hostgroup_extensions.rb +2 -0
- data/app/models/foreman_ansible/ansible_provider.rb +2 -0
- data/app/models/foreman_ansible/fact_name.rb +2 -0
- data/app/models/host_ansible_role.rb +2 -0
- data/app/models/hostgroup_ansible_role.rb +2 -0
- data/app/models/setting/ansible.rb +7 -5
- data/app/overrides/ansible_roles_tab.rb +2 -0
- data/app/overrides/ansible_variables_edit.rb +15 -0
- data/app/overrides/hostgroup_ansible_roles_tab.rb +2 -0
- data/app/overrides/hostgroup_play_roles.rb +2 -0
- data/app/overrides/report_output.rb +2 -0
- data/app/services/foreman_ansible/ansible_report_importer.rb +15 -0
- data/app/services/foreman_ansible/ansible_report_scanner.rb +2 -0
- data/app/services/foreman_ansible/api_roles_importer.rb +2 -0
- data/app/services/foreman_ansible/fact_importer.rb +2 -0
- data/app/services/foreman_ansible/fact_parser.rb +13 -1
- data/app/services/foreman_ansible/fact_sparser.rb +2 -0
- data/app/services/foreman_ansible/insights_notification_builder.rb +2 -0
- data/app/services/foreman_ansible/insights_plan_runner.rb +3 -2
- data/app/services/foreman_ansible/inventory_creator.rb +0 -6
- data/app/services/foreman_ansible/operating_system_parser.rb +3 -1
- data/app/services/foreman_ansible/playbook_creator.rb +2 -0
- data/app/services/foreman_ansible/proxy_api.rb +24 -0
- data/app/services/foreman_ansible/renderer_methods.rb +2 -0
- data/app/services/foreman_ansible/roles_importer.rb +4 -17
- data/app/services/foreman_ansible/structured_fact_importer.rb +2 -0
- data/app/services/foreman_ansible/ui_roles_importer.rb +2 -0
- data/app/services/foreman_ansible/variables_importer.rb +100 -0
- data/app/views/ansible_roles/index.html.erb +13 -3
- data/app/views/ansible_variables/_ansible_roles_list.html.erb +15 -0
- data/app/views/ansible_variables/_validator_text.html.erb +5 -0
- data/app/views/ansible_variables/edit.html.erb +17 -0
- data/app/views/ansible_variables/import.html.erb +53 -0
- data/app/views/ansible_variables/index.html.erb +46 -0
- data/app/views/api/v2/ansible_roles/import.json.rabl +2 -0
- data/app/views/api/v2/ansible_roles/index.json.rabl +2 -0
- data/app/views/api/v2/ansible_roles/obsolete.json.rabl +2 -0
- data/app/views/api/v2/ansible_roles/show.json.rabl +2 -0
- data/app/views/api/v2/ansible_variables/import.json.rabl +3 -0
- data/app/views/api/v2/ansible_variables/index.json.rabl +3 -0
- data/app/views/api/v2/ansible_variables/obsolete.json.rabl +3 -0
- data/app/views/api/v2/ansible_variables/show.json.rabl +20 -0
- data/app/views/foreman_ansible/api/v2/ansible_roles/import.json.rabl +2 -0
- data/app/views/foreman_ansible/api/v2/ansible_roles/index.json.rabl +2 -0
- data/app/views/foreman_ansible/api/v2/ansible_roles/obsolete.json.rabl +2 -0
- data/app/views/foreman_ansible/api/v2/ansible_roles/show.json.rabl +2 -0
- data/config/routes.rb +17 -0
- data/db/migrate/20160705082036_create_ansible_role.rb +2 -0
- data/db/migrate/20160706074540_create_join_table_hosts_ansible_roles.rb +2 -0
- data/db/migrate/20160707195442_create_host_ansible_roles.rb +2 -0
- data/db/migrate/20160729094457_add_columns_to_ansible_role.rb +2 -0
- data/db/migrate/20160802153302_create_join_table_hostgroup_ansible_roles.rb +2 -0
- data/db/migrate/20160805094233_add_primary_key_hostgroup_ansible_roles.rb +2 -0
- data/db/migrate/20161122154057_automatically_set_role_timestamps.rb +2 -0
- data/db/migrate/20180410125416_rename_ansible_job_categories.rb +6 -3
- data/db/migrate/20180628125416_add_ansible_role_id_to_lookup_keys.rb +14 -0
- data/db/seeds.d/62_ansible_proxy_feature.rb +2 -0
- data/db/seeds.d/75_job_templates.rb +3 -1
- data/db/seeds.d/90_notification_blueprints.rb +2 -0
- data/lib/foreman_ansible.rb +2 -0
- data/lib/foreman_ansible/engine.rb +2 -0
- data/lib/foreman_ansible/register.rb +28 -1
- data/lib/foreman_ansible/remote_execution.rb +2 -0
- data/lib/foreman_ansible/version.rb +3 -1
- data/locale/action_names.rb +2 -2
- data/locale/de/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/de/foreman_ansible.edit.po +444 -0
- data/locale/de/foreman_ansible.po +56 -17
- data/locale/de/foreman_ansible.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/en/foreman_ansible.edit.po +442 -0
- data/locale/en/foreman_ansible.po +56 -17
- data/locale/en/foreman_ansible.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/es/foreman_ansible.edit.po +444 -0
- data/locale/es/foreman_ansible.po +56 -17
- data/locale/es/foreman_ansible.po.time_stamp +0 -0
- data/locale/foreman_ansible.pot +174 -93
- data/locale/fr/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/fr/foreman_ansible.edit.po +444 -0
- data/locale/fr/foreman_ansible.po +56 -17
- data/locale/fr/foreman_ansible.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/it/foreman_ansible.edit.po +444 -0
- data/locale/it/foreman_ansible.po +56 -17
- data/locale/it/foreman_ansible.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ja/foreman_ansible.edit.po +444 -0
- data/locale/ja/foreman_ansible.po +56 -17
- data/locale/ja/foreman_ansible.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ko/foreman_ansible.edit.po +444 -0
- data/locale/ko/foreman_ansible.po +56 -17
- data/locale/ko/foreman_ansible.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/pt_BR/foreman_ansible.edit.po +444 -0
- data/locale/pt_BR/foreman_ansible.po +56 -17
- data/locale/pt_BR/foreman_ansible.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ru/foreman_ansible.edit.po +445 -0
- data/locale/ru/foreman_ansible.po +56 -17
- data/locale/ru/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/zh_CN/foreman_ansible.edit.po +444 -0
- data/locale/zh_CN/foreman_ansible.po +56 -17
- data/locale/zh_CN/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/zh_TW/foreman_ansible.edit.po +444 -0
- data/locale/zh_TW/foreman_ansible.po +56 -17
- data/locale/zh_TW/foreman_ansible.po.time_stamp +0 -0
- data/test/factories/ansible_proxy.rb +2 -0
- data/test/factories/ansible_roles.rb +2 -0
- data/test/factories/ansible_variables.rb +8 -0
- data/test/functional/ansible_roles_controller_test.rb +2 -0
- data/test/functional/ansible_variables_controller_test.rb +36 -0
- data/test/functional/api/v2/ansible_roles_controller_test.rb +21 -9
- data/test/functional/api/v2/ansible_variables_controller_test.rb +41 -0
- data/test/functional/api/v2/hostgroups_controller_test.rb +2 -0
- data/test/functional/api/v2/hosts_controller_test.rb +2 -0
- data/test/functional/hosts_controller_test.rb +2 -0
- data/test/test_plugin_helper.rb +2 -0
- data/test/unit/ansible_provider_test.rb +2 -0
- data/test/unit/ansible_role_test.rb +5 -9
- data/test/unit/ansible_variable_test.rb +14 -0
- data/test/unit/concerns/config_reports_extensions_test.rb +2 -0
- data/test/unit/concerns/host_managed_extensions_test.rb +2 -0
- data/test/unit/concerns/hostgroup_extensions_test.rb +2 -0
- data/test/unit/helpers/ansible_reports_helper_test.rb +2 -0
- data/test/unit/host_ansible_role_test.rb +2 -0
- data/test/unit/hostgroup_ansible_role_test.rb +2 -0
- data/test/unit/lib/foreman_ansible_core/command_creator_test.rb +2 -0
- data/test/unit/lib/foreman_ansible_core/playbook_runner_test.rb +2 -0
- data/test/unit/lib/proxy_api/ansible_test.rb +2 -0
- data/test/unit/services/ansible_report_importer_test.rb +15 -0
- data/test/unit/services/ansible_variables_importer_test.rb +39 -0
- data/test/unit/services/api_roles_importer_test.rb +2 -0
- data/test/unit/services/fact_importer_test.rb +2 -0
- data/test/unit/services/fact_parser_test.rb +47 -0
- data/test/unit/services/fact_sparser_test.rb +2 -0
- data/test/unit/services/insights_plan_runner_test.rb +2 -0
- data/test/unit/services/inventory_creator_test.rb +1 -13
- data/test/unit/services/roles_importer_test.rb +2 -0
- data/test/unit/services/structured_fact_importer_test.rb +2 -0
- data/test/unit/services/ui_roles_importer_test.rb +2 -0
- metadata +101 -42
- data/test/unit/lib/foreman_ansible_core/roles_reader_test.rb +0 -92
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_ansible 2.2.
|
8
|
+
"Project-Id-Version: foreman_ansible 2.2.6\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2018-03-12 12:24-0400\n"
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
@@ -35,13 +35,19 @@ msgstr ""
|
|
35
35
|
msgid "Ansible"
|
36
36
|
msgstr ""
|
37
37
|
|
38
|
+
msgid "Ansible Role"
|
39
|
+
msgstr ""
|
40
|
+
|
38
41
|
msgid "Ansible Roles"
|
39
42
|
msgstr ""
|
40
43
|
|
44
|
+
msgid "Ansible Variables"
|
45
|
+
msgstr ""
|
46
|
+
|
41
47
|
msgid "Ansible report timeout"
|
42
48
|
msgstr ""
|
43
49
|
|
44
|
-
msgid "Ansible role
|
50
|
+
msgid "Ansible role"
|
45
51
|
msgstr ""
|
46
52
|
|
47
53
|
msgid "Ansible support in Foreman"
|
@@ -59,12 +65,18 @@ msgstr ""
|
|
59
65
|
msgid "Available roles"
|
60
66
|
msgstr ""
|
61
67
|
|
68
|
+
msgid "Before including these variables on your playbooks, Foreman will validate that your variables comply with the validation."
|
69
|
+
msgstr ""
|
70
|
+
|
62
71
|
msgid "Cancel"
|
63
72
|
msgstr ""
|
64
73
|
|
65
74
|
msgid "Changed Ansible roles"
|
66
75
|
msgstr ""
|
67
76
|
|
77
|
+
msgid "Changed Ansible variables"
|
78
|
+
msgstr ""
|
79
|
+
|
68
80
|
msgid "Check/Uncheck all"
|
69
81
|
msgstr ""
|
70
82
|
|
@@ -95,19 +107,25 @@ msgstr ""
|
|
95
107
|
msgid "Deletes Ansible role"
|
96
108
|
msgstr ""
|
97
109
|
|
110
|
+
msgid "Deletes Ansible variable"
|
111
|
+
msgstr ""
|
112
|
+
|
98
113
|
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
99
114
|
msgstr ""
|
100
115
|
|
101
116
|
msgid "Disabled"
|
102
117
|
msgstr ""
|
103
118
|
|
104
|
-
msgid "
|
119
|
+
msgid "Edit %s"
|
105
120
|
msgstr ""
|
106
121
|
|
107
|
-
msgid "
|
122
|
+
msgid "Edit Ansible Variable"
|
108
123
|
msgstr ""
|
109
124
|
|
110
|
-
msgid "
|
125
|
+
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\""
|
126
|
+
msgstr ""
|
127
|
+
|
128
|
+
msgid "Error loading data from proxy"
|
111
129
|
msgstr ""
|
112
130
|
|
113
131
|
msgid "Foreman"
|
@@ -137,10 +155,7 @@ msgstr ""
|
|
137
155
|
msgid "IDs of associated ansible roles"
|
138
156
|
msgstr ""
|
139
157
|
|
140
|
-
msgid "
|
141
|
-
msgstr ""
|
142
|
-
|
143
|
-
msgid "IDs of hosts to play roles on"
|
158
|
+
msgid "If ERB is used in a parameter value, the validation of the value will happen during the ENC request. If the value is invalid, the ENC request will fail."
|
144
159
|
msgstr ""
|
145
160
|
|
146
161
|
msgid "Import"
|
@@ -149,6 +164,9 @@ msgstr ""
|
|
149
164
|
msgid "Import Ansible roles"
|
150
165
|
msgstr ""
|
151
166
|
|
167
|
+
msgid "Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
168
|
+
msgstr ""
|
169
|
+
|
152
170
|
msgid "Import Puppet classes"
|
153
171
|
msgstr ""
|
154
172
|
|
@@ -158,6 +176,12 @@ msgstr ""
|
|
158
176
|
msgid "Import of roles successfully finished."
|
159
177
|
msgstr ""
|
160
178
|
|
179
|
+
msgid ""
|
180
|
+
"Import of variables successfully finished.\n"
|
181
|
+
"Added: #{results[:added].join(', ')} \n"
|
182
|
+
" Removed: #{results[:obsolete].join(', ')}"
|
183
|
+
msgstr ""
|
184
|
+
|
161
185
|
msgid "Imported at"
|
162
186
|
msgstr ""
|
163
187
|
|
@@ -191,10 +215,7 @@ msgstr ""
|
|
191
215
|
msgid "List Ansible roles"
|
192
216
|
msgstr ""
|
193
217
|
|
194
|
-
msgid "List
|
195
|
-
msgstr ""
|
196
|
-
|
197
|
-
msgid "List all Ansible roles for a hostgroup"
|
218
|
+
msgid "List Ansible variables"
|
198
219
|
msgstr ""
|
199
220
|
|
200
221
|
msgid "Message"
|
@@ -223,6 +244,9 @@ msgstr ""
|
|
223
244
|
msgid "No changes in roles detected."
|
224
245
|
msgstr ""
|
225
246
|
|
247
|
+
msgid "No proxy found to import variables from, ensure that the smart proxy has the Ansible feature enabled."
|
248
|
+
msgstr ""
|
249
|
+
|
226
250
|
msgid "Nothing to show"
|
227
251
|
msgstr ""
|
228
252
|
|
@@ -232,6 +256,9 @@ msgstr ""
|
|
232
256
|
msgid "Obsolete Ansible roles"
|
233
257
|
msgstr ""
|
234
258
|
|
259
|
+
msgid "Obsolete Ansible variables. This will only obsolete variables for already existing roles, it will not delete any old roles"
|
260
|
+
msgstr ""
|
261
|
+
|
235
262
|
msgid "Operation"
|
236
263
|
msgstr ""
|
237
264
|
|
@@ -295,15 +322,12 @@ msgstr ""
|
|
295
322
|
msgid "Show role"
|
296
323
|
msgstr ""
|
297
324
|
|
298
|
-
msgid "
|
325
|
+
msgid "Show variable"
|
299
326
|
msgstr ""
|
300
327
|
|
301
328
|
msgid "Smart Proxy to import from"
|
302
329
|
msgstr ""
|
303
330
|
|
304
|
-
msgid "There are no Ansible roles to play"
|
305
|
-
msgstr ""
|
306
|
-
|
307
331
|
msgid "This list of roles will be applied when the host finishes<br/> provisioning. Users can also play these roles through the API<br/>or by clicking on the Play Roles button on the Host page "
|
308
332
|
msgstr ""
|
309
333
|
|
@@ -319,9 +343,15 @@ msgstr ""
|
|
319
343
|
msgid "Top level Ansible variables"
|
320
344
|
msgstr ""
|
321
345
|
|
346
|
+
msgid "Type"
|
347
|
+
msgstr ""
|
348
|
+
|
322
349
|
msgid "Unable to get roles from Ansible"
|
323
350
|
msgstr ""
|
324
351
|
|
352
|
+
msgid "Unable to get roles/variables from Ansible"
|
353
|
+
msgstr ""
|
354
|
+
|
325
355
|
msgid "Update"
|
326
356
|
msgstr ""
|
327
357
|
|
@@ -331,6 +361,15 @@ msgstr ""
|
|
331
361
|
msgid "Use this to supply a path to an SSH Private Key that Ansible will use in lieu of a password Override with \"ansible_ssh_private_key_file\" host parameter"
|
332
362
|
msgstr ""
|
333
363
|
|
364
|
+
msgid "Variables"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
msgid "Variable|Name"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
msgid "Variable|Role"
|
371
|
+
msgstr ""
|
372
|
+
|
334
373
|
msgid "Whether to put Ansible parameters in the \"hostvars\" top-level key of the inventory. By default it is true, so that Host Parameters can be used directly in the playbooks.When false, Host Parameters can only be accessed throughforeman_params[\"host_parameter\"] in the playbooks."
|
335
374
|
msgstr ""
|
336
375
|
|
File without changes
|
Binary file
|
@@ -0,0 +1,442 @@
|
|
1
|
+
# foreman_ansible
|
2
|
+
#
|
3
|
+
# This file is distributed under the same license as foreman_ansible.
|
4
|
+
#
|
5
|
+
msgid ""
|
6
|
+
msgstr ""
|
7
|
+
"Project-Id-Version: foreman_ansible 2.2.9\n"
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
9
|
+
"PO-Revision-Date: 2014-08-20 08:54+0100\n"
|
10
|
+
"Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
|
11
|
+
"Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
|
12
|
+
"Language: \n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15
|
+
"Content-Transfer-Encoding: 8bit\n"
|
16
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17
|
+
|
18
|
+
#: ../app/controllers/ansible_roles_controller.rb:37
|
19
|
+
msgid "Import of roles successfully finished."
|
20
|
+
msgstr ""
|
21
|
+
|
22
|
+
#: ../app/controllers/ansible_roles_controller.rb:57
|
23
|
+
msgid "No changes in roles detected."
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
#: ../app/controllers/ansible_roles_controller.rb:58
|
27
|
+
msgid "No changes in roles detected on %s."
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:16
|
31
|
+
msgid "Show role"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:20
|
35
|
+
msgid "List Ansible roles"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:26
|
39
|
+
msgid "Deletes Ansible role"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:32
|
43
|
+
msgid "Import Ansible roles"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:33 ../app/controllers/api/v2/ansible_roles_controller.rb:40
|
47
|
+
msgid "Smart Proxy to import from"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:34
|
51
|
+
msgid "Ansible role names to import"
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:39
|
55
|
+
msgid "Obsolete Ansible roles"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:46
|
59
|
+
msgid "Fetch Ansible roles available to be imported"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:47
|
63
|
+
msgid "Smart Proxy to fetch from"
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:15
|
67
|
+
msgid "Plays Ansible roles on a hostgroup"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:25
|
71
|
+
msgid "Plays Ansible roles on hostgroups"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:26
|
75
|
+
msgid "IDs of hostgroups to play roles on"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:37
|
79
|
+
msgid "List all Ansible roles for a hostgroup"
|
80
|
+
msgstr ""
|
81
|
+
|
82
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb:11 ../app/controllers/foreman_ansible/api/v2/hosts_param_group_extensions.rb:11
|
83
|
+
msgid "IDs of associated ansible roles"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:20
|
87
|
+
msgid "Plays Ansible roles on a host"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:29
|
91
|
+
msgid "Plays Ansible roles on hosts"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:30
|
95
|
+
msgid "IDs of hosts to play roles on"
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:40
|
99
|
+
msgid "List all Ansible roles for a host"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
#: ../app/controllers/foreman_ansible/concerns/hostgroups_controller_extensions.rb:25
|
103
|
+
msgid "Host group has no associated hosts"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
#: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:11
|
107
|
+
msgid "There are no Ansible roles to play"
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
#: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:13
|
111
|
+
msgid "Could not run Ansible roles for %{host}"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:6
|
115
|
+
msgid "From %s"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:13
|
119
|
+
msgid "Import"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:19
|
123
|
+
msgid "%s ago"
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:21 ../app/lib/actions/foreman_ansible/helpers/host_common.rb:16
|
127
|
+
msgid "Play Ansible roles"
|
128
|
+
msgstr ""
|
129
|
+
|
130
|
+
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:40
|
131
|
+
msgid "Run Ansible roles"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:8
|
135
|
+
msgid "Playbook execution failed"
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:28 ../lib/foreman_ansible_core/remote_execution_core/ansible_runner.rb:31
|
139
|
+
msgid "Error loading data from proxy"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
#: ../app/lib/actions/foreman_ansible/helpers/play_roles_description.rb:11
|
143
|
+
msgid "Foreman"
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
#: ../app/lib/proxy_api/ansible.rb:25
|
147
|
+
msgid "Unable to get roles from Ansible"
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
#: ../app/models/setting/ansible.rb:18
|
151
|
+
msgid "Use this to supply a path to an SSH Private Key that Ansible will use in lieu of a password Override with \"ansible_ssh_private_key_file\" host parameter"
|
152
|
+
msgstr ""
|
153
|
+
|
154
|
+
#: ../app/models/setting/ansible.rb:23
|
155
|
+
msgid "Private Key Path"
|
156
|
+
msgstr ""
|
157
|
+
|
158
|
+
#: ../app/models/setting/ansible.rb:27
|
159
|
+
msgid "Use this connection type by default when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_connection\""
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
#: ../app/models/setting/ansible.rb:31
|
163
|
+
msgid "Connection type"
|
164
|
+
msgstr ""
|
165
|
+
|
166
|
+
#: ../app/models/setting/ansible.rb:35
|
167
|
+
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\""
|
168
|
+
msgstr ""
|
169
|
+
|
170
|
+
#: ../app/models/setting/ansible.rb:40
|
171
|
+
msgid "WinRM cert Validation"
|
172
|
+
msgstr ""
|
173
|
+
|
174
|
+
#: ../app/models/setting/ansible.rb:44
|
175
|
+
msgid "Foreman will add the this level of verbosity for additional debugging output when running Ansible playbooks."
|
176
|
+
msgstr ""
|
177
|
+
|
178
|
+
#: ../app/models/setting/ansible.rb:47
|
179
|
+
msgid "Default verbosity level"
|
180
|
+
msgstr ""
|
181
|
+
|
182
|
+
#: ../app/models/setting/ansible.rb:50
|
183
|
+
msgid "Disabled"
|
184
|
+
msgstr ""
|
185
|
+
|
186
|
+
#: ../app/models/setting/ansible.rb:51
|
187
|
+
msgid "Level 1 (-v)"
|
188
|
+
msgstr ""
|
189
|
+
|
190
|
+
#: ../app/models/setting/ansible.rb:52
|
191
|
+
msgid "Level 2 (-vv)"
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
#: ../app/models/setting/ansible.rb:53
|
195
|
+
msgid "Level 3 (-vvv)"
|
196
|
+
msgstr ""
|
197
|
+
|
198
|
+
#: ../app/models/setting/ansible.rb:54
|
199
|
+
msgid "Level 4 (-vvvv)"
|
200
|
+
msgstr ""
|
201
|
+
|
202
|
+
#: ../app/models/setting/ansible.rb:60
|
203
|
+
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."
|
204
|
+
msgstr ""
|
205
|
+
|
206
|
+
#: ../app/models/setting/ansible.rb:65
|
207
|
+
msgid "Post-provision timeout"
|
208
|
+
msgstr ""
|
209
|
+
|
210
|
+
#: ../app/models/setting/ansible.rb:69
|
211
|
+
msgid "Whether to put Ansible parameters in the \"hostvars\" top-level key of the inventory. By default it is true, so that Host Parameters can be used directly in the playbooks.When false, Host Parameters can only be accessed throughforeman_params[\"host_parameter\"] in the playbooks."
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
#: ../app/models/setting/ansible.rb:75
|
215
|
+
msgid "Top level Ansible variables"
|
216
|
+
msgstr ""
|
217
|
+
|
218
|
+
#: ../app/models/setting/ansible.rb:79
|
219
|
+
msgid "Timeout (in minutes) when hosts should have reported."
|
220
|
+
msgstr ""
|
221
|
+
|
222
|
+
#: ../app/models/setting/ansible.rb:81
|
223
|
+
msgid "Ansible report timeout"
|
224
|
+
msgstr ""
|
225
|
+
|
226
|
+
#: ../app/models/setting/ansible.rb:85
|
227
|
+
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
228
|
+
msgstr ""
|
229
|
+
|
230
|
+
#: ../app/models/setting/ansible.rb:89
|
231
|
+
msgid "%{cfgmgmt} out of sync disabled"
|
232
|
+
msgstr ""
|
233
|
+
|
234
|
+
#: ../app/models/setting/ansible.rb:102 ../lib/foreman_ansible/register.rb:50
|
235
|
+
msgid "Ansible"
|
236
|
+
msgstr ""
|
237
|
+
|
238
|
+
#: ../app/services/foreman_ansible/insights_notification_builder.rb:49
|
239
|
+
msgid "Remediation Plan"
|
240
|
+
msgstr ""
|
241
|
+
|
242
|
+
#: ../app/services/foreman_ansible/insights_notification_builder.rb:59 ../db/seeds.d/90_notification_blueprints.rb:11
|
243
|
+
msgid "Job Details"
|
244
|
+
msgstr ""
|
245
|
+
|
246
|
+
#: ../app/services/foreman_ansible/roles_importer.rb:37
|
247
|
+
msgid "Proxy not found"
|
248
|
+
msgstr ""
|
249
|
+
|
250
|
+
#: ../app/views/ansible_roles/import.html.erb:1
|
251
|
+
msgid "Changed Ansible roles"
|
252
|
+
msgstr ""
|
253
|
+
|
254
|
+
#: ../app/views/ansible_roles/import.html.erb:3
|
255
|
+
msgid "Select the changes you want to realize in Foreman"
|
256
|
+
msgstr ""
|
257
|
+
|
258
|
+
#: ../app/views/ansible_roles/import.html.erb:5
|
259
|
+
msgid "Toggle"
|
260
|
+
msgstr ""
|
261
|
+
|
262
|
+
#: ../app/views/ansible_roles/import.html.erb:6
|
263
|
+
msgid "New"
|
264
|
+
msgstr ""
|
265
|
+
|
266
|
+
#: ../app/views/ansible_roles/import.html.erb:8
|
267
|
+
msgid "Check/Uncheck new"
|
268
|
+
msgstr ""
|
269
|
+
|
270
|
+
#: ../app/views/ansible_roles/import.html.erb:9
|
271
|
+
msgid "Obsolete"
|
272
|
+
msgstr ""
|
273
|
+
|
274
|
+
#: ../app/views/ansible_roles/import.html.erb:11
|
275
|
+
msgid "Check/Uncheck obsolete"
|
276
|
+
msgstr ""
|
277
|
+
|
278
|
+
#: ../app/views/ansible_roles/import.html.erb:19
|
279
|
+
msgid "Check/Uncheck all"
|
280
|
+
msgstr ""
|
281
|
+
|
282
|
+
#: ../app/views/ansible_roles/import.html.erb:21
|
283
|
+
msgid "Name"
|
284
|
+
msgstr ""
|
285
|
+
|
286
|
+
#: ../app/views/ansible_roles/import.html.erb:22
|
287
|
+
msgid "Hosts count"
|
288
|
+
msgstr ""
|
289
|
+
|
290
|
+
#: ../app/views/ansible_roles/import.html.erb:23
|
291
|
+
msgid "Hostgroups count"
|
292
|
+
msgstr ""
|
293
|
+
|
294
|
+
#: ../app/views/ansible_roles/import.html.erb:24
|
295
|
+
msgid "Operation"
|
296
|
+
msgstr ""
|
297
|
+
|
298
|
+
#: ../app/views/ansible_roles/import.html.erb:35
|
299
|
+
msgid "Check/Uncheck all %s changes"
|
300
|
+
msgstr ""
|
301
|
+
|
302
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
303
|
+
msgid "Add"
|
304
|
+
msgstr ""
|
305
|
+
|
306
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
307
|
+
msgid "Remove"
|
308
|
+
msgstr ""
|
309
|
+
|
310
|
+
#: ../app/views/ansible_roles/import.html.erb:48
|
311
|
+
msgid "Cancel"
|
312
|
+
msgstr ""
|
313
|
+
|
314
|
+
#: ../app/views/ansible_roles/import.html.erb:49
|
315
|
+
msgid "Update"
|
316
|
+
msgstr ""
|
317
|
+
|
318
|
+
#: ../app/views/ansible_roles/index.html.erb:1 ../app/views/ansible_roles/welcome.html.erb:1 ../app/views/ansible_roles/welcome.html.erb:6 ../app/views/foreman_ansible/ansible_roles/_select_tab_title.html.erb:1
|
319
|
+
msgid "Ansible Roles"
|
320
|
+
msgstr ""
|
321
|
+
|
322
|
+
#: ../app/views/ansible_roles/index.html.erb:9
|
323
|
+
msgid "Role|Name"
|
324
|
+
msgstr ""
|
325
|
+
|
326
|
+
#: ../app/views/ansible_roles/index.html.erb:10
|
327
|
+
msgid "Hostgroups"
|
328
|
+
msgstr ""
|
329
|
+
|
330
|
+
#: ../app/views/ansible_roles/index.html.erb:11
|
331
|
+
msgid "Hosts"
|
332
|
+
msgstr ""
|
333
|
+
|
334
|
+
#: ../app/views/ansible_roles/index.html.erb:12
|
335
|
+
msgid "Imported at"
|
336
|
+
msgstr ""
|
337
|
+
|
338
|
+
#: ../app/views/ansible_roles/index.html.erb:13
|
339
|
+
msgid "Actions"
|
340
|
+
msgstr ""
|
341
|
+
|
342
|
+
#: ../app/views/ansible_roles/index.html.erb:26
|
343
|
+
msgid "Delete %s?"
|
344
|
+
msgstr ""
|
345
|
+
|
346
|
+
#: ../app/views/ansible_roles/welcome.html.erb:7
|
347
|
+
msgid ""
|
348
|
+
"No ansible roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
349
|
+
" you have to import them first."
|
350
|
+
msgstr ""
|
351
|
+
|
352
|
+
#: ../app/views/ansible_roles/welcome.html.erb:10
|
353
|
+
msgid "Learn more about this in the documentation."
|
354
|
+
msgstr ""
|
355
|
+
|
356
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
|
357
|
+
msgid "Play Roles"
|
358
|
+
msgstr ""
|
359
|
+
|
360
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:9
|
361
|
+
msgid "Nest"
|
362
|
+
msgstr ""
|
363
|
+
|
364
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:10
|
365
|
+
msgid "Clone"
|
366
|
+
msgstr ""
|
367
|
+
|
368
|
+
#: ../app/views/foreman_ansible/ansible_roles/_select_tab_content.html.erb:9
|
369
|
+
msgid "Available roles"
|
370
|
+
msgstr ""
|
371
|
+
|
372
|
+
#: ../app/views/foreman_ansible/ansible_roles/_select_tab_content.html.erb:10
|
373
|
+
msgid "This list of roles will be applied when the host finishes<br/> provisioning. Users can also play these roles through the API<br/>or by clicking on the Play Roles button on the Host page "
|
374
|
+
msgstr ""
|
375
|
+
|
376
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:7
|
377
|
+
msgid "Level"
|
378
|
+
msgstr ""
|
379
|
+
|
380
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:8
|
381
|
+
msgid "Module"
|
382
|
+
msgstr ""
|
383
|
+
|
384
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:9
|
385
|
+
msgid "Arguments"
|
386
|
+
msgstr ""
|
387
|
+
|
388
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:10
|
389
|
+
msgid "Message"
|
390
|
+
msgstr ""
|
391
|
+
|
392
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:23
|
393
|
+
msgid "Nothing to show"
|
394
|
+
msgstr ""
|
395
|
+
|
396
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:3
|
397
|
+
msgid "Jobs"
|
398
|
+
msgstr ""
|
399
|
+
|
400
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:5
|
401
|
+
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
402
|
+
msgstr ""
|
403
|
+
|
404
|
+
#: ../lib/foreman_ansible/register.rb:52
|
405
|
+
msgid "Roles"
|
406
|
+
msgstr ""
|
407
|
+
|
408
|
+
#: ../lib/foreman_ansible/remote_execution.rb:18
|
409
|
+
msgid "Ansible: Run host roles"
|
410
|
+
msgstr ""
|
411
|
+
|
412
|
+
#: ../lib/foreman_ansible/remote_execution.rb:19
|
413
|
+
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
414
|
+
msgstr ""
|
415
|
+
|
416
|
+
#: ../lib/foreman_ansible/remote_execution.rb:24
|
417
|
+
msgid "Ansible: Run Insights maintenance plan"
|
418
|
+
msgstr ""
|
419
|
+
|
420
|
+
#: ../lib/foreman_ansible/remote_execution.rb:25
|
421
|
+
msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
422
|
+
msgstr ""
|
423
|
+
|
424
|
+
#: action_names.rb:2
|
425
|
+
msgid "Action with sub plans"
|
426
|
+
msgstr ""
|
427
|
+
|
428
|
+
#: action_names.rb:3
|
429
|
+
msgid "Import facts"
|
430
|
+
msgstr ""
|
431
|
+
|
432
|
+
#: action_names.rb:4
|
433
|
+
msgid "Import Puppet classes"
|
434
|
+
msgstr ""
|
435
|
+
|
436
|
+
#: action_names.rb:5
|
437
|
+
msgid "Remote action:"
|
438
|
+
msgstr ""
|
439
|
+
|
440
|
+
#: gemspec.rb:2
|
441
|
+
msgid "Ansible support in Foreman"
|
442
|
+
msgstr ""
|