foreman_acd 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +82 -86
- data/app/controllers/foreman_acd/ansible_playbooks_controller.rb +13 -11
- data/app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb +4 -3
- data/app/controllers/foreman_acd/api/v2/app_definitions_controller.rb +1 -0
- data/app/controllers/foreman_acd/api/v2/app_instances_controller.rb +9 -1
- data/app/controllers/foreman_acd/app_definitions_controller.rb +14 -9
- data/app/controllers/foreman_acd/app_instances_controller.rb +97 -25
- data/app/controllers/foreman_acd/concerns/ansible_playbook_parameters.rb +1 -1
- data/app/controllers/foreman_acd/concerns/app_definition_parameters.rb +1 -1
- data/app/controllers/foreman_acd/concerns/app_instance_parameters.rb +1 -1
- data/app/controllers/foreman_acd/remote_execution_controller.rb +3 -6
- data/app/controllers/ui_acd_controller.rb +9 -0
- data/app/lib/actions/foreman_acd/deploy_all_hosts.rb +42 -0
- data/app/lib/actions/foreman_acd/run_configurator.rb +41 -0
- data/app/models/concerns/foreman_acd/host_managed_extensions.rb +51 -0
- data/app/models/foreman_acd/acd_provider.rb +3 -0
- data/app/models/foreman_acd/ansible_playbook.rb +30 -13
- data/app/models/foreman_acd/app_definition.rb +24 -1
- data/app/models/foreman_acd/app_instance.rb +40 -5
- data/app/models/foreman_acd/foreman_host.rb +23 -0
- data/app/models/foreman_acd/taxonomy_extensions.rb +17 -0
- data/app/services/foreman_acd/app_configurator.rb +7 -10
- data/app/services/foreman_acd/app_deployer.rb +59 -47
- data/app/services/foreman_acd/inventory_creator.rb +12 -25
- data/app/views/foreman_acd/ansible_playbooks/_form.html.erb +11 -2
- data/app/views/foreman_acd/ansible_playbooks/edit.html.erb +9 -1
- data/app/views/foreman_acd/ansible_playbooks/index.html.erb +3 -3
- data/app/views/foreman_acd/api/v2/ansible_playbooks/base.json.rabl +2 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/index.json.rabl +2 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/show.json.rabl +6 -0
- data/app/views/foreman_acd/api/v2/app_definitions/base.json.rabl +2 -0
- data/app/views/foreman_acd/api/v2/app_definitions/index.json.rabl +2 -0
- data/app/views/foreman_acd/api/v2/app_definitions/show.json.rabl +6 -0
- data/app/views/foreman_acd/api/v2/app_instances/base.json.rabl +3 -1
- data/app/views/foreman_acd/api/v2/app_instances/index.json.rabl +2 -0
- data/app/views/foreman_acd/api/v2/app_instances/show.json.rabl +2 -0
- data/app/views/foreman_acd/app_definitions/_form.html.erb +8 -0
- data/app/views/foreman_acd/app_definitions/edit.html.erb +10 -5
- data/app/views/foreman_acd/app_definitions/index.html.erb +4 -4
- data/app/views/foreman_acd/app_instances/_form.html.erb +3 -3
- data/app/views/foreman_acd/app_instances/edit.html.erb +10 -0
- data/app/views/foreman_acd/app_instances/index.html.erb +87 -14
- data/app/views/foreman_acd/app_instances/report.html.erb +5 -2
- data/app/views/templates/job/run_acd_ansible_playbook.erb +14 -1
- data/app/views/ui_acd/app_definition.json.rabl +1 -1
- data/config/routes.rb +1 -2
- data/db/migrate/20200917120220_add_ansible_playbook_id.rb +1 -1
- data/db/migrate/20201016002819_add_ansible_vars_all_to_app_definitions.rb +3 -0
- data/db/migrate/20201016104338_add_ansible_vars_all_to_app_instances.rb +3 -0
- data/db/migrate/20210112111548_add_organization_to_app_instance.rb +22 -0
- data/db/migrate/20210112113853_add_location_to_app_instance.rb +8 -0
- data/db/migrate/20210202141658_create_foreman_hosts.rb +24 -0
- data/db/migrate/20210204111306_remove_hosts_from_app_instances.rb +8 -0
- data/db/migrate/20210209091014_rename_acd_tables.rb +16 -0
- data/db/migrate/20210216083522_add_last_progress_report.rb +8 -0
- data/db/migrate/20210216091529_add_last_deploy_task.rb +8 -0
- data/db/seeds.d/62_acd_proxy_feature.rb +1 -3
- data/db/seeds.d/75-job_templates.rb +6 -1
- data/lib/foreman_acd/engine.rb +14 -3
- data/lib/foreman_acd/plugin.rb +49 -28
- data/lib/foreman_acd/version.rb +1 -1
- data/locale/en/foreman_acd.edit.po +326 -0
- data/locale/en/foreman_acd.po +232 -2
- data/{app/controllers/foreman_acd/api/v2/app_playbooks_controller.rb → locale/en/foreman_acd.po.time_stamp} +0 -0
- data/locale/foreman_acd.pot +343 -8
- data/test/controllers/ansible_playbooks_controller_test.rb +27 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinition.js +31 -18
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionActions.js +8 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionConstants.js +1 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionReducer.js +26 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionSelectors.js +1 -0
- data/webpack/components/ApplicationDefinition/index.js +2 -0
- data/webpack/components/ApplicationInstance/ApplicationInstance.js +67 -30
- data/webpack/components/ApplicationInstance/ApplicationInstanceActions.js +8 -0
- data/webpack/components/ApplicationInstance/ApplicationInstanceConstants.js +1 -0
- data/webpack/components/ApplicationInstance/ApplicationInstanceReducer.js +16 -2
- data/webpack/components/ApplicationInstance/ApplicationInstanceSelectors.js +1 -0
- data/webpack/components/ApplicationInstance/components/Service.js +1 -1
- data/webpack/components/ApplicationInstance/index.js +2 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.js +53 -60
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.scss +17 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportActions.js +7 -51
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportConstants.js +2 -4
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportReducer.js +4 -18
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportSelectors.js +0 -1
- data/webpack/components/ApplicationInstanceReport/components/ReportViewer.js +1 -1
- data/webpack/components/ApplicationInstanceReport/index.js +0 -2
- data/webpack/components/ParameterSelection/ParameterSelection.js +10 -0
- data/webpack/components/ParameterSelection/ParameterSelectionActions.js +8 -7
- data/webpack/components/common/DeleteTableEntry.js +3 -2
- data/webpack/components/common/EditTableEntry.js +2 -1
- data/webpack/components/common/LockTableEntry.js +2 -1
- metadata +48 -6
- data/app/views/foreman_acd/app_instances/deploy.html.erb +0 -19
data/lib/foreman_acd/version.rb
CHANGED
@@ -0,0 +1,326 @@
|
|
1
|
+
# foreman_acd
|
2
|
+
#
|
3
|
+
# This file is distributed under the same license as foreman_acd.
|
4
|
+
#
|
5
|
+
msgid ""
|
6
|
+
msgstr ""
|
7
|
+
"Project-Id-Version: version 0.0.1\n"
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
9
|
+
"POT-Creation-Date: 2021-02-05 21:21+0000\n"
|
10
|
+
"PO-Revision-Date: 2014-08-20 08:54+0100\n"
|
11
|
+
"Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
|
12
|
+
"Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
|
13
|
+
"Language: \n"
|
14
|
+
"MIME-Version: 1.0\n"
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18
|
+
|
19
|
+
#: ../app/controllers/foreman_acd/ansible_playbooks_controller.rb:22
|
20
|
+
msgid ""
|
21
|
+
"Successfully created %s. You need to press the \"Import groups\" button\n"
|
22
|
+
" before this ansible playbook can be used in App Definitions!"
|
23
|
+
msgstr ""
|
24
|
+
|
25
|
+
#: ../app/controllers/foreman_acd/ansible_playbooks_controller.rb:116
|
26
|
+
msgid "Successfully loaded ansible group variables from %s"
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
#: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:15
|
30
|
+
msgid "Show ansible playbook"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
#: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:19
|
34
|
+
msgid "List ansible playbooks"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
#: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:35
|
38
|
+
msgid "Create a ansible playbook"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
#: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:42
|
42
|
+
msgid "Deletes ansible playbook"
|
43
|
+
msgstr ""
|
44
|
+
|
45
|
+
#: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:48
|
46
|
+
msgid "Grab ansible playbook"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
#: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:12
|
50
|
+
msgid "Show application definition"
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
#: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:16
|
54
|
+
msgid "List application definitions"
|
55
|
+
msgstr ""
|
56
|
+
|
57
|
+
#: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:32
|
58
|
+
msgid "Create a application definition"
|
59
|
+
msgstr ""
|
60
|
+
|
61
|
+
#: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:39
|
62
|
+
msgid "Deletes application definition"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
#: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:12
|
66
|
+
msgid "Show application instance"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
#: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:18
|
70
|
+
msgid "List application instances"
|
71
|
+
msgstr ""
|
72
|
+
|
73
|
+
#: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:39
|
74
|
+
msgid "Create a application instance"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
#: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:46
|
78
|
+
msgid "Deletes application instance"
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
#: ../app/models/foreman_acd/ansible_playbook.rb:37
|
82
|
+
msgid "Ansible playbook"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
#: ../app/models/foreman_acd/app_definition.rb:37
|
86
|
+
msgid "App Definition"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
#: ../app/models/foreman_acd/app_instance.rb:19
|
90
|
+
msgid "App Instance"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
#: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:5
|
94
|
+
msgid "Ansible playbooks"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
#: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:7 ../app/views/foreman_acd/app_definitions/_form.html.erb:34
|
98
|
+
msgid "Locations"
|
99
|
+
msgstr ""
|
100
|
+
|
101
|
+
#: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:10 ../app/views/foreman_acd/app_definitions/_form.html.erb:37
|
102
|
+
msgid "Organizations"
|
103
|
+
msgstr ""
|
104
|
+
|
105
|
+
#: ../app/views/foreman_acd/ansible_playbooks/edit.html.erb:4 ../app/views/foreman_acd/ansible_playbooks/index.html.erb:1
|
106
|
+
msgid "Ansible Playbooks"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
#: ../app/views/foreman_acd/ansible_playbooks/edit.html.erb:10
|
110
|
+
msgid "Edit Ansible Playbook %s"
|
111
|
+
msgstr ""
|
112
|
+
|
113
|
+
#: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:4 ../app/views/foreman_acd/ansible_playbooks/new.html.erb:1
|
114
|
+
msgid "New Ansible Playbook"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
#: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:9
|
118
|
+
msgid "AnsiblePlaybook|Name"
|
119
|
+
msgstr ""
|
120
|
+
|
121
|
+
#: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:10 ../app/views/foreman_acd/app_definitions/index.html.erb:11 ../app/views/foreman_acd/app_instances/index.html.erb:9 ../webpack/components/ParameterSelection/ParameterSelectionActions.js:97
|
122
|
+
msgid "Description"
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
#: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:19
|
126
|
+
msgid "Import groups"
|
127
|
+
msgstr ""
|
128
|
+
|
129
|
+
#: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:21 ../app/views/foreman_acd/app_definitions/index.html.erb:21 ../app/views/foreman_acd/app_instances/index.html.erb:27
|
130
|
+
msgid "Delete %s?"
|
131
|
+
msgstr ""
|
132
|
+
|
133
|
+
#: ../app/views/foreman_acd/app_definitions/_form.html.erb:32 ../app/views/foreman_acd/app_definitions/import.html.erb:6 ../app/views/foreman_acd/app_definitions/index.html.erb:1
|
134
|
+
msgid "Application Definitions"
|
135
|
+
msgstr ""
|
136
|
+
|
137
|
+
#: ../app/views/foreman_acd/app_definitions/edit.html.erb:4
|
138
|
+
msgid "App Definitions"
|
139
|
+
msgstr ""
|
140
|
+
|
141
|
+
#: ../app/views/foreman_acd/app_definitions/edit.html.erb:11
|
142
|
+
msgid "Edit Application Definition %s"
|
143
|
+
msgstr ""
|
144
|
+
|
145
|
+
#: ../app/views/foreman_acd/app_definitions/import.html.erb:1
|
146
|
+
msgid "Import Application Definition"
|
147
|
+
msgstr ""
|
148
|
+
|
149
|
+
#: ../app/views/foreman_acd/app_definitions/import.html.erb:13
|
150
|
+
msgid "Application Definition file"
|
151
|
+
msgstr ""
|
152
|
+
|
153
|
+
#: ../app/views/foreman_acd/app_definitions/index.html.erb:4 ../app/views/foreman_acd/app_definitions/new.html.erb:1
|
154
|
+
msgid "New Application Definition"
|
155
|
+
msgstr ""
|
156
|
+
|
157
|
+
#: ../app/views/foreman_acd/app_definitions/index.html.erb:5
|
158
|
+
msgid "Import"
|
159
|
+
msgstr ""
|
160
|
+
|
161
|
+
#: ../app/views/foreman_acd/app_definitions/index.html.erb:10
|
162
|
+
msgid "AppDefinition|Name"
|
163
|
+
msgstr ""
|
164
|
+
|
165
|
+
#: ../app/views/foreman_acd/app_definitions/index.html.erb:22
|
166
|
+
msgid "Export"
|
167
|
+
msgstr ""
|
168
|
+
|
169
|
+
#: ../app/views/foreman_acd/app_instances/_form.html.erb:32 ../app/views/foreman_acd/app_instances/index.html.erb:1
|
170
|
+
msgid "Application Instances"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
#: ../app/views/foreman_acd/app_instances/edit.html.erb:4
|
174
|
+
msgid "App Instances"
|
175
|
+
msgstr ""
|
176
|
+
|
177
|
+
#: ../app/views/foreman_acd/app_instances/edit.html.erb:11
|
178
|
+
msgid "Edit Application Instance %s"
|
179
|
+
msgstr ""
|
180
|
+
|
181
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:3 ../app/views/foreman_acd/app_instances/new.html.erb:1
|
182
|
+
msgid "New Application Instance"
|
183
|
+
msgstr ""
|
184
|
+
|
185
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:7
|
186
|
+
msgid "AppInstance|Name"
|
187
|
+
msgstr ""
|
188
|
+
|
189
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:8
|
190
|
+
msgid "Application"
|
191
|
+
msgstr ""
|
192
|
+
|
193
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:18
|
194
|
+
msgid "Deploy"
|
195
|
+
msgstr ""
|
196
|
+
|
197
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:20
|
198
|
+
msgid "Run Playbook"
|
199
|
+
msgstr ""
|
200
|
+
|
201
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:22
|
202
|
+
msgid "Run Playbook - customize first"
|
203
|
+
msgstr ""
|
204
|
+
|
205
|
+
#: ../app/views/foreman_acd/app_instances/index.html.erb:24
|
206
|
+
msgid "Report"
|
207
|
+
msgstr ""
|
208
|
+
|
209
|
+
#: ../lib/foreman_acd/plugin.rb:9
|
210
|
+
msgid "Applications"
|
211
|
+
msgstr ""
|
212
|
+
|
213
|
+
#: ../lib/foreman_acd/plugin.rb:145
|
214
|
+
msgid "Run playbook for ACD"
|
215
|
+
msgstr ""
|
216
|
+
|
217
|
+
#: ../lib/foreman_acd/plugin.rb:147
|
218
|
+
msgid "Run an Ansible playbook to configure ACD application"
|
219
|
+
msgstr ""
|
220
|
+
|
221
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:74 ../webpack/components/ApplicationInstance/ApplicationInstance.js:114
|
222
|
+
msgid "edit entry"
|
223
|
+
msgstr ""
|
224
|
+
|
225
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:81 ../webpack/components/ApplicationInstance/ApplicationInstance.js:121
|
226
|
+
msgid "change parameters"
|
227
|
+
msgstr ""
|
228
|
+
|
229
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:88 ../webpack/components/ApplicationInstance/ApplicationInstance.js:128
|
230
|
+
msgid "change ansible variables"
|
231
|
+
msgstr ""
|
232
|
+
|
233
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:102 ../webpack/components/ApplicationInstance/ApplicationInstance.js:142
|
234
|
+
msgid "edit"
|
235
|
+
msgstr ""
|
236
|
+
|
237
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:106 ../webpack/components/ApplicationInstance/ApplicationInstance.js:146
|
238
|
+
msgid "settings"
|
239
|
+
msgstr ""
|
240
|
+
|
241
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:277 ../webpack/components/ApplicationInstance/ApplicationInstance.js:324
|
242
|
+
msgid "change ansible variables for 'all'"
|
243
|
+
msgstr ""
|
244
|
+
|
245
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:285
|
246
|
+
msgid "Foreman Parameter definition for Application Definition"
|
247
|
+
msgstr ""
|
248
|
+
|
249
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:303 ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:330 ../webpack/components/ApplicationInstance/ApplicationInstance.js:350 ../webpack/components/ApplicationInstance/ApplicationInstance.js:377
|
250
|
+
msgid "Save"
|
251
|
+
msgstr ""
|
252
|
+
|
253
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:304 ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:331 ../webpack/components/ApplicationInstance/ApplicationInstance.js:351 ../webpack/components/ApplicationInstance/ApplicationInstance.js:378
|
254
|
+
msgid "Cancel"
|
255
|
+
msgstr ""
|
256
|
+
|
257
|
+
#: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:313
|
258
|
+
msgid "Ansible variables for Application Definition"
|
259
|
+
msgstr ""
|
260
|
+
|
261
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:53
|
262
|
+
msgid ""
|
263
|
+
"For some hosts the values for some parameters are missing. Check the values for these hosts:\n"
|
264
|
+
msgstr ""
|
265
|
+
|
266
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:71
|
267
|
+
msgid "Unachieved service counts:"
|
268
|
+
msgstr ""
|
269
|
+
|
270
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:75
|
271
|
+
msgid ""
|
272
|
+
"- service ${s.name} expects at ${s.minCount} least configured hosts\n"
|
273
|
+
msgstr ""
|
274
|
+
|
275
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:79
|
276
|
+
msgid ""
|
277
|
+
"- service ${s.name} expects no more than ${s.axCount} configured hosts\n"
|
278
|
+
msgstr ""
|
279
|
+
|
280
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:332
|
281
|
+
msgid "Foreman Parameter specification for Application Instance"
|
282
|
+
msgstr ""
|
283
|
+
|
284
|
+
#: ../webpack/components/ApplicationInstance/ApplicationInstance.js:360
|
285
|
+
msgid "Ansible group variables for Application Instance"
|
286
|
+
msgstr ""
|
287
|
+
|
288
|
+
#: ../webpack/components/ApplicationInstance/components/Service.js:12
|
289
|
+
msgid "Min/Max"
|
290
|
+
msgstr ""
|
291
|
+
|
292
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:63
|
293
|
+
msgid "Value"
|
294
|
+
msgstr ""
|
295
|
+
|
296
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:65
|
297
|
+
msgid "Default value"
|
298
|
+
msgstr ""
|
299
|
+
|
300
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:78
|
301
|
+
msgid "Name"
|
302
|
+
msgstr ""
|
303
|
+
|
304
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:120
|
305
|
+
msgid "Type"
|
306
|
+
msgstr ""
|
307
|
+
|
308
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:161
|
309
|
+
msgid "Actions"
|
310
|
+
msgstr ""
|
311
|
+
|
312
|
+
#: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:188
|
313
|
+
msgid "Failed to fetch data from server."
|
314
|
+
msgstr ""
|
315
|
+
|
316
|
+
#: ../webpack/components/common/DeleteTableEntry.js:24
|
317
|
+
msgid "Are you sure you wish to delete this item?"
|
318
|
+
msgstr ""
|
319
|
+
|
320
|
+
#: ../webpack/components/common/DeleteTableEntry.js:26
|
321
|
+
msgid "Delete entry"
|
322
|
+
msgstr ""
|
323
|
+
|
324
|
+
#: gemspec.rb:2
|
325
|
+
msgid "TODO: Description of ForemanAcd."
|
326
|
+
msgstr ""
|
data/locale/en/foreman_acd.po
CHANGED
@@ -2,12 +2,10 @@
|
|
2
2
|
#
|
3
3
|
# This file is distributed under the same license as foreman_acd.
|
4
4
|
#
|
5
|
-
#, fuzzy
|
6
5
|
msgid ""
|
7
6
|
msgstr ""
|
8
7
|
"Project-Id-Version: version 0.0.1\n"
|
9
8
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date: 2014-08-20 08:46+0100\n"
|
11
9
|
"PO-Revision-Date: 2014-08-20 08:54+0100\n"
|
12
10
|
"Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
|
13
11
|
"Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
|
@@ -17,3 +15,235 @@ msgstr ""
|
|
17
15
|
"Content-Transfer-Encoding: 8bit\n"
|
18
16
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19
17
|
|
18
|
+
msgid ""
|
19
|
+
"- service ${s.name} expects at ${s.minCount} least configured hosts\n"
|
20
|
+
msgstr ""
|
21
|
+
|
22
|
+
msgid ""
|
23
|
+
"- service ${s.name} expects no more than ${s.axCount} configured hosts\n"
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
msgid "Actions"
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
msgid "Ansible Playbooks"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "Ansible group variables for Application Instance"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
msgid "Ansible playbook"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
msgid "Ansible playbooks"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "Ansible variables for Application Definition"
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
msgid "AnsiblePlaybook|Name"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
msgid "App Definition"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
msgid "App Definitions"
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
msgid "App Instance"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
msgid "App Instances"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
msgid "AppDefinition|Name"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
msgid "AppInstance|Name"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
msgid "Application"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
msgid "Application Definition file"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
msgid "Application Definitions"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
msgid "Application Instances"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
msgid "Applications"
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
msgid "Are you sure you wish to delete this item?"
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
msgid "Cancel"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "Create a ansible playbook"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
msgid "Create a application definition"
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
msgid "Create a application instance"
|
93
|
+
msgstr ""
|
94
|
+
|
95
|
+
msgid "Default value"
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
msgid "Delete %s?"
|
99
|
+
msgstr ""
|
100
|
+
|
101
|
+
msgid "Delete entry"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
msgid "Deletes ansible playbook"
|
105
|
+
msgstr ""
|
106
|
+
|
107
|
+
msgid "Deletes application definition"
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
msgid "Deletes application instance"
|
111
|
+
msgstr ""
|
112
|
+
|
113
|
+
msgid "Deploy"
|
114
|
+
msgstr ""
|
115
|
+
|
116
|
+
msgid "Description"
|
117
|
+
msgstr ""
|
118
|
+
|
119
|
+
msgid "Edit Ansible Playbook %s"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
msgid "Edit Application Definition %s"
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
msgid "Edit Application Instance %s"
|
126
|
+
msgstr ""
|
127
|
+
|
128
|
+
msgid "Export"
|
129
|
+
msgstr ""
|
130
|
+
|
131
|
+
msgid "Failed to fetch data from server."
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
msgid ""
|
135
|
+
"For some hosts the values for some parameters are missing. Check the values for these hosts:\n"
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
msgid "Foreman Parameter definition for Application Definition"
|
139
|
+
msgstr ""
|
140
|
+
|
141
|
+
msgid "Foreman Parameter specification for Application Instance"
|
142
|
+
msgstr ""
|
143
|
+
|
144
|
+
msgid "Grab ansible playbook"
|
145
|
+
msgstr ""
|
146
|
+
|
147
|
+
msgid "Import"
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
msgid "Import Application Definition"
|
151
|
+
msgstr ""
|
152
|
+
|
153
|
+
msgid "Import groups"
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
msgid "List ansible playbooks"
|
157
|
+
msgstr ""
|
158
|
+
|
159
|
+
msgid "List application definitions"
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
msgid "List application instances"
|
163
|
+
msgstr ""
|
164
|
+
|
165
|
+
msgid "Locations"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
msgid "Min/Max"
|
169
|
+
msgstr ""
|
170
|
+
|
171
|
+
msgid "Name"
|
172
|
+
msgstr ""
|
173
|
+
|
174
|
+
msgid "New Ansible Playbook"
|
175
|
+
msgstr ""
|
176
|
+
|
177
|
+
msgid "New Application Definition"
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
msgid "New Application Instance"
|
181
|
+
msgstr ""
|
182
|
+
|
183
|
+
msgid "Organizations"
|
184
|
+
msgstr ""
|
185
|
+
|
186
|
+
msgid "Report"
|
187
|
+
msgstr ""
|
188
|
+
|
189
|
+
msgid "Run Playbook"
|
190
|
+
msgstr ""
|
191
|
+
|
192
|
+
msgid "Run Playbook - customize first"
|
193
|
+
msgstr ""
|
194
|
+
|
195
|
+
msgid "Run an Ansible playbook to configure ACD application"
|
196
|
+
msgstr ""
|
197
|
+
|
198
|
+
msgid "Run playbook for ACD"
|
199
|
+
msgstr ""
|
200
|
+
|
201
|
+
msgid "Save"
|
202
|
+
msgstr ""
|
203
|
+
|
204
|
+
msgid "Show ansible playbook"
|
205
|
+
msgstr ""
|
206
|
+
|
207
|
+
msgid "Show application definition"
|
208
|
+
msgstr ""
|
209
|
+
|
210
|
+
msgid "Show application instance"
|
211
|
+
msgstr ""
|
212
|
+
|
213
|
+
msgid ""
|
214
|
+
"Successfully created %s. You need to press the \"Import groups\" button\n"
|
215
|
+
" before this ansible playbook can be used in App Definitions!"
|
216
|
+
msgstr ""
|
217
|
+
|
218
|
+
msgid "Successfully loaded ansible group variables from %s"
|
219
|
+
msgstr ""
|
220
|
+
|
221
|
+
msgid "TODO: Description of ForemanAcd."
|
222
|
+
msgstr ""
|
223
|
+
|
224
|
+
msgid "Type"
|
225
|
+
msgstr ""
|
226
|
+
|
227
|
+
msgid "Unachieved service counts:"
|
228
|
+
msgstr ""
|
229
|
+
|
230
|
+
msgid "Value"
|
231
|
+
msgstr ""
|
232
|
+
|
233
|
+
msgid "change ansible variables"
|
234
|
+
msgstr ""
|
235
|
+
|
236
|
+
msgid "change ansible variables for 'all'"
|
237
|
+
msgstr ""
|
238
|
+
|
239
|
+
msgid "change parameters"
|
240
|
+
msgstr ""
|
241
|
+
|
242
|
+
msgid "edit"
|
243
|
+
msgstr ""
|
244
|
+
|
245
|
+
msgid "edit entry"
|
246
|
+
msgstr ""
|
247
|
+
|
248
|
+
msgid "settings"
|
249
|
+
msgstr ""
|