foreman_fog_proxmox 0.8.0 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of foreman_fog_proxmox might be problematic. Click here for more details.

Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -1
  3. data/Rakefile +3 -1
  4. data/app/controllers/concerns/foreman_fog_proxmox/controller/parameters/compute_resource.rb +2 -2
  5. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +2 -2
  6. data/app/helpers/node_dashboard_helper.rb +13 -14
  7. data/app/helpers/proxmox_compute_selectors_helper.rb +49 -50
  8. data/app/helpers/proxmox_container_helper.rb +42 -36
  9. data/app/helpers/proxmox_form_helper.rb +38 -40
  10. data/app/helpers/proxmox_server_helper.rb +39 -41
  11. data/app/helpers/proxmox_vm_helper.rb +21 -25
  12. data/app/models/concerns/fog_extensions/proxmox/disk.rb +8 -8
  13. data/app/models/concerns/fog_extensions/proxmox/interface.rb +8 -8
  14. data/app/models/concerns/fog_extensions/proxmox/node.rb +24 -22
  15. data/app/models/concerns/fog_extensions/proxmox/server.rb +71 -59
  16. data/app/models/concerns/fog_extensions/proxmox/server_config.rb +47 -39
  17. data/app/models/concerns/fog_extensions/proxmox/volume.rb +8 -8
  18. data/app/models/concerns/host_ext/proxmox/interfaces.rb +21 -13
  19. data/app/models/concerns/orchestration/proxmox/compute.rb +14 -10
  20. data/app/models/foreman_fog_proxmox/options_select.rb +14 -14
  21. data/app/models/foreman_fog_proxmox/proxmox.rb +30 -466
  22. data/app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb +54 -0
  23. data/app/models/foreman_fog_proxmox/proxmox_connection.rb +67 -0
  24. data/app/models/foreman_fog_proxmox/proxmox_console.rb +41 -0
  25. data/app/models/foreman_fog_proxmox/proxmox_images.rb +53 -0
  26. data/app/models/foreman_fog_proxmox/proxmox_interfaces.rb +60 -0
  27. data/app/models/foreman_fog_proxmox/proxmox_operating_systems.rb +49 -0
  28. data/app/models/foreman_fog_proxmox/proxmox_token_expiration.rb +30 -0
  29. data/app/models/foreman_fog_proxmox/proxmox_version.rb +36 -0
  30. data/app/models/foreman_fog_proxmox/proxmox_vm_commands.rb +108 -0
  31. data/app/models/foreman_fog_proxmox/proxmox_vm_new.rb +162 -0
  32. data/app/models/foreman_fog_proxmox/proxmox_vm_queries.rb +74 -0
  33. data/app/models/foreman_fog_proxmox/proxmox_volumes.rb +85 -0
  34. data/app/overrides/compute_resources_vms/form/add_clone_to_new_vm_compute_detail.rb +7 -6
  35. data/app/overrides/compute_resources_vms/form/add_from_profile_to_compute_attributes_form.rb +13 -11
  36. data/app/overrides/compute_resources_vms/form/add_vm_type_to_networks_form.rb +13 -11
  37. data/app/overrides/compute_resources_vms/form/add_vm_type_to_nic_provider_specific_form.rb +8 -7
  38. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_edit.rb +7 -6
  39. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_new_volume.rb +7 -6
  40. data/app/overrides/compute_resources_vms/form/remove_new_vm_from_removable_layout.rb +7 -6
  41. data/app/services/foreman_fog_proxmox/node_dashboard/data.rb +16 -16
  42. data/app/views/api/v2/compute_resources/proxmox.json.rabl +3 -1
  43. data/app/views/compute_resources/form/_proxmox.html.erb +3 -0
  44. data/app/views/compute_resources/show/_proxmox.html.erb +8 -0
  45. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_compute_attributes_form.html.erb +5 -0
  46. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_compute_form.html.erb +6 -1
  47. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_hosts_compute_detail_form.html.erb +6 -0
  48. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb +6 -2
  49. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb +8 -2
  50. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_nic_provider_specific_form.html.erb +6 -0
  51. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb +15 -1
  52. data/app/views/compute_resources_vms/form/proxmox/_base.html.erb +2 -2
  53. data/app/views/compute_resources_vms/form/proxmox/_general.html.erb +1 -1
  54. data/app/views/compute_resources_vms/form/proxmox/_removable_layout.html.erb +6 -1
  55. data/app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb +1 -1
  56. data/app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb +1 -1
  57. data/app/views/compute_resources_vms/form/proxmox/server/_config.html.erb +1 -1
  58. data/app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb +2 -2
  59. data/config/routes.rb +4 -4
  60. data/lib/foreman_fog_proxmox/engine.rb +14 -14
  61. data/lib/foreman_fog_proxmox/semver.rb +78 -78
  62. data/lib/foreman_fog_proxmox/value.rb +5 -3
  63. data/lib/foreman_fog_proxmox/version.rb +1 -1
  64. data/lib/tasks/foreman_fog_proxmox_tasks.rake +3 -13
  65. data/locale/en/foreman_fog_proxmox.edit.po +472 -0
  66. data/locale/en/foreman_fog_proxmox.po +48 -24
  67. data/locale/en/foreman_fog_proxmox.po.time_stamp +0 -0
  68. data/locale/foreman_fog_proxmox.pot +140 -102
  69. data/locale/fr/foreman_fog_proxmox.edit.po +472 -0
  70. data/locale/fr/foreman_fog_proxmox.po +52 -28
  71. data/locale/fr/foreman_fog_proxmox.po.time_stamp +0 -0
  72. data/locale/gemspec.rb +2 -0
  73. data/test/{unit/foreman_fog_proxmox/proxmox_test_helpers.rb → factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb} +4 -140
  74. data/test/factories/foreman_fog_proxmox/proxmox_node_mock_factory.rb +61 -0
  75. data/test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb +134 -0
  76. data/test/factories/proxmox_factory.rb +15 -15
  77. data/test/functional/compute_resources_controller_test.rb +12 -10
  78. data/test/test_plugin_helper.rb +2 -0
  79. data/test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb +178 -182
  80. data/test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb +122 -126
  81. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb +180 -187
  82. data/test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb +116 -0
  83. data/test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb +71 -0
  84. data/test/unit/foreman_fog_proxmox/proxmox_test.rb +9 -479
  85. data/test/unit/foreman_fog_proxmox/proxmox_version_test.rb +82 -0
  86. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb +207 -0
  87. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb +92 -0
  88. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb +324 -0
  89. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_test.rb +43 -0
  90. data/test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb +71 -0
  91. data/test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb +63 -0
  92. data/test/unit/foreman_fog_proxmox/semver_test.rb +67 -53
  93. metadata +52 -14
@@ -35,6 +35,9 @@ msgstr ""
35
35
  msgid "Ballooning Device"
36
36
  msgstr ""
37
37
 
38
+ msgid "Boot device order"
39
+ msgstr ""
40
+
38
41
  msgid "Bridge"
39
42
  msgstr ""
40
43
 
@@ -107,12 +110,21 @@ msgstr ""
107
110
  msgid "Extended"
108
111
  msgstr ""
109
112
 
110
- msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
113
+ msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
114
+ msgstr ""
115
+
116
+ msgid "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s"
117
+ msgstr ""
118
+
119
+ msgid "Failed to update a compute %<compute_resource>s instance %<name>s: %<e>s"
111
120
  msgstr ""
112
121
 
113
122
  msgid "Firewall"
114
123
  msgstr ""
115
124
 
125
+ msgid "Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn"
126
+ msgstr ""
127
+
116
128
  msgid "Foreman Fog Proxmox widget"
117
129
  msgstr ""
118
130
 
@@ -125,9 +137,6 @@ msgstr ""
125
137
  msgid "Hostname"
126
138
  msgstr ""
127
139
 
128
- msgid "Identifier interface[%{index}] required."
129
- msgstr ""
130
-
131
140
  msgid "Image"
132
141
  msgstr ""
133
142
 
@@ -137,12 +146,6 @@ msgstr ""
137
146
  msgid "Image VMID"
138
147
  msgstr ""
139
148
 
140
- msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
141
- msgstr ""
142
-
143
- msgid "Invalid uuid=[%{uuid}]."
144
- msgstr ""
145
-
146
149
  msgid "KVM"
147
150
  msgstr ""
148
151
 
@@ -190,7 +193,7 @@ msgstr ""
190
193
  msgid "Operating System"
191
194
  msgstr ""
192
195
 
193
- msgid "Operating system family %{type} is not consistent with %{ostype}"
196
+ msgid "Operating system family %<type>s is not consistent with %<ostype>s"
194
197
  msgstr ""
195
198
 
196
199
  msgid "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer."
@@ -202,6 +205,9 @@ msgstr ""
202
205
  msgid "Password to authenticate with - used for SSH finish step."
203
206
  msgstr ""
204
207
 
208
+ msgid "Path"
209
+ msgstr ""
210
+
205
211
  msgid "Physical"
206
212
  msgstr ""
207
213
 
@@ -211,12 +217,21 @@ msgstr ""
211
217
  msgid "Proxmox Node Statistics: %s"
212
218
  msgstr ""
213
219
 
220
+ msgid "Proxmox compute resource version is %<version>s"
221
+ msgstr ""
222
+
223
+ msgid "Proxmox version %<version>s is not semver suitable"
224
+ msgstr ""
225
+
214
226
  msgid "Qemu Agent"
215
227
  msgstr ""
216
228
 
217
229
  msgid "Rate limit"
218
230
  msgstr ""
219
231
 
232
+ msgid "Renew expired token ?"
233
+ msgstr ""
234
+
220
235
  msgid "Root password"
221
236
  msgstr ""
222
237
 
@@ -244,9 +259,6 @@ msgstr ""
244
259
  msgid "Start at boot"
245
260
  msgstr ""
246
261
 
247
- msgid "Start/Shutdown order"
248
- msgstr ""
249
-
250
262
  msgid "Storage"
251
263
  msgstr ""
252
264
 
@@ -265,12 +277,24 @@ msgstr ""
265
277
  msgid "Time"
266
278
  msgstr ""
267
279
 
280
+ msgid "Token expires on"
281
+ msgstr ""
282
+
283
+ msgid "Token expires on #{token_deadline}"
284
+ msgstr ""
285
+
286
+ msgid "Token has expired?"
287
+ msgstr ""
288
+
268
289
  msgid "Type"
269
290
  msgstr ""
270
291
 
271
292
  msgid "URL"
272
293
  msgstr ""
273
294
 
295
+ msgid "Unable to shrink %<id>s size. Proxmox allows only increasing size."
296
+ msgstr ""
297
+
274
298
  msgid "Unable to store X509 certificates"
275
299
  msgstr ""
276
300
 
@@ -289,16 +313,19 @@ msgstr ""
289
313
  msgid "VM ID"
290
314
  msgstr ""
291
315
 
316
+ msgid "Version"
317
+ msgstr ""
318
+
292
319
  msgid "X509 Certification Authorities"
293
320
  msgstr ""
294
321
 
295
322
  msgid "add new storage volume"
296
323
  msgstr ""
297
324
 
298
- msgid "create_vm(): %{args}"
325
+ msgid "create_vm(): clone %<image_id>s in %<vmid>s"
299
326
  msgstr ""
300
327
 
301
- msgid "create_vm(): clone %{image_id} in %{vmid}"
328
+ msgid "e.g. /path/to/"
302
329
  msgstr ""
303
330
 
304
331
  msgid "e.g. https://127.0.0.1:8006/api2/json"
@@ -307,19 +334,19 @@ msgstr ""
307
334
  msgid "e.g. root@pam"
308
335
  msgstr ""
309
336
 
310
- msgid "failed to create vm: %{e}"
337
+ msgid "failed to create vm: %<e>s"
311
338
  msgstr ""
312
339
 
313
- msgid "invalid vmid=%{vmid}"
340
+ msgid "invalid vmid=%<vmid>s"
314
341
  msgstr ""
315
342
 
316
- msgid "new_container_vm() vm.config=%{config}"
343
+ msgid "new_container_vm() vm.config=%<config>s"
317
344
  msgstr ""
318
345
 
319
- msgid "new_server_vm() vm.config=%{config}"
346
+ msgid "new_server_vm() vm.config=%<config>s"
320
347
  msgstr ""
321
348
 
322
- msgid "new_vm() vm.config=%{config}"
349
+ msgid "new_vm() vm.config=%<config>s"
323
350
  msgstr ""
324
351
 
325
352
  msgid "remove network interface"
@@ -328,8 +355,5 @@ msgstr ""
328
355
  msgid "remove storage volume"
329
356
  msgstr ""
330
357
 
331
- msgid "save_vm(): %{attr}"
332
- msgstr ""
333
-
334
358
  msgid "vmid of template vm."
335
359
  msgstr ""
File without changes
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2018-09-10 09:45+0200\n"
12
- "PO-Revision-Date: 2018-09-10 09:45+0200\n"
11
+ "POT-Creation-Date: 2019-11-07 14:18+0100\n"
12
+ "PO-Revision-Date: 2019-11-07 14:18+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,109 +18,117 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: ../app/helpers/node_dashboard_helper.rb:34
21
+ #: ../app/helpers/node_dashboard_helper.rb:33
22
22
  msgid "Time"
23
23
  msgstr ""
24
24
 
25
- #: ../app/helpers/node_dashboard_helper.rb:34
25
+ #: ../app/helpers/node_dashboard_helper.rb:33
26
26
  msgid "Average load (x100)"
27
27
  msgstr ""
28
28
 
29
- #: ../app/helpers/proxmox_form_helper.rb:34
29
+ #: ../app/helpers/proxmox_form_helper.rb:33
30
30
  msgid "Caps lock ON"
31
31
  msgstr ""
32
32
 
33
- #: ../app/helpers/proxmox_form_helper.rb:37
33
+ #: ../app/helpers/proxmox_form_helper.rb:36
34
34
  msgid "Change the password"
35
35
  msgstr ""
36
36
 
37
- #: ../app/helpers/proxmox_vm_helper.rb:79
38
- msgid "Invalid uuid=[%{uuid}]."
37
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:30
38
+ msgid "Failed to update a compute %<compute_resource>s instance %<name>s: %<e>s"
39
39
  msgstr ""
40
40
 
41
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:116
42
- msgid "Operating system family %{type} is not consistent with %{ostype}"
41
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:38
42
+ msgid "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s"
43
43
  msgstr ""
44
44
 
45
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:123
46
- msgid "Identifier interface[%{index}] required."
45
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:100
46
+ msgid "Unable to store X509 certificates"
47
47
  msgstr ""
48
48
 
49
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:124
50
- msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
49
+ #: ../app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb:31
50
+ msgid "Operating system family %<type>s is not consistent with %<ostype>s"
51
51
  msgstr ""
52
52
 
53
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:201
54
- msgid "new_vm() vm.config=%{config}"
53
+ #: ../app/models/foreman_fog_proxmox/proxmox_console.rb:37
54
+ msgid "%s console is not supported at this time"
55
55
  msgstr ""
56
56
 
57
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:207
58
- msgid "new_container_vm() vm.config=%{config}"
57
+ #: ../app/models/foreman_fog_proxmox/proxmox_images.rb:46
58
+ msgid "create_vm(): clone %<image_id>s in %<vmid>s"
59
59
  msgstr ""
60
60
 
61
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:213
62
- msgid "new_server_vm() vm.config=%{config}"
61
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:25
62
+ msgid "Proxmox compute resource version is %<version>s"
63
63
  msgstr ""
64
64
 
65
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:220
66
- msgid "invalid vmid=%{vmid}"
65
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:26
66
+ msgid "Proxmox version %<version>s is not semver suitable"
67
67
  msgstr ""
68
68
 
69
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:223
70
- msgid "create_vm(): clone %{image_id} in %{vmid}"
69
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:33
70
+ msgid "invalid vmid=%<vmid>s"
71
71
  msgstr ""
72
72
 
73
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:229
74
- msgid "create_vm(): %{args}"
73
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:52
74
+ msgid "failed to create vm: %<e>s"
75
75
  msgstr ""
76
76
 
77
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:243
78
- msgid "failed to create vm: %{e}"
77
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:140
78
+ msgid "new_vm() vm.config=%<config>s"
79
79
  msgstr ""
80
80
 
81
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:257
82
- msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
81
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:149
82
+ msgid "new_container_vm() vm.config=%<config>s"
83
83
  msgstr ""
84
84
 
85
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:297
86
- msgid "save_vm(): %{attr}"
85
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:158
86
+ msgid "new_server_vm() vm.config=%<config>s"
87
87
  msgstr ""
88
88
 
89
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:343
90
- msgid "Unable to store X509 certificates"
89
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_queries.rb:70
90
+ msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
91
91
  msgstr ""
92
92
 
93
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:371
94
- msgid "%s console is not supported at this time"
93
+ #: ../app/models/foreman_fog_proxmox/proxmox_volumes.rb:35
94
+ msgid "Unable to shrink %<id>s size. Proxmox allows only increasing size."
95
+ msgstr ""
96
+
97
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
98
+ msgid "Renew expired token ?"
95
99
  msgstr ""
96
100
 
97
- #: ../app/views/compute_resources/form/_proxmox.html.erb:6
101
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
102
+ msgid "Token expires on #{token_deadline}"
103
+ msgstr ""
104
+
105
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
98
106
  msgid "e.g. https://127.0.0.1:8006/api2/json"
99
107
  msgstr ""
100
108
 
101
- #: ../app/views/compute_resources/form/_proxmox.html.erb:6
109
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
102
110
  msgid "Test failed"
103
111
  msgstr ""
104
112
 
105
- #: ../app/views/compute_resources/form/_proxmox.html.erb:7
113
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:11
106
114
  msgid "e.g. root@pam"
107
115
  msgstr ""
108
116
 
109
- #: ../app/views/compute_resources/form/_proxmox.html.erb:9
117
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:13
110
118
  msgid "SSL verify peer"
111
119
  msgstr ""
112
120
 
113
- #: ../app/views/compute_resources/form/_proxmox.html.erb:10
121
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:14
114
122
  msgid "X509 Certification Authorities"
115
123
  msgstr ""
116
124
 
117
- #: ../app/views/compute_resources/form/_proxmox.html.erb:11
125
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:15
118
126
  msgid ""
119
127
  "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disab"
120
128
  "le ssl_verify_peer."
121
129
  msgstr ""
122
130
 
123
- #: ../app/views/compute_resources/form/_proxmox.html.erb:12
131
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:16
124
132
  #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
125
133
  msgid "Node"
126
134
  msgstr ""
@@ -129,37 +137,53 @@ msgstr ""
129
137
  msgid "URL"
130
138
  msgstr ""
131
139
 
140
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:8
141
+ msgid "Version"
142
+ msgstr ""
143
+
144
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:12
145
+ msgid "Token has expired?"
146
+ msgstr ""
147
+
148
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:16
149
+ msgid "Token expires on"
150
+ msgstr ""
151
+
132
152
  #:
133
153
  #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:6
154
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:10
134
155
  #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:8
156
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:14
135
157
  msgid "remove network interface"
136
158
  msgstr ""
137
159
 
138
160
  #:
139
161
  #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:11
140
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:16
141
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:23
142
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:30
143
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:37
144
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
145
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:47
162
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:17
163
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:25
164
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:29
165
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:33
166
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:44
167
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:48
146
168
  msgid "remove storage volume"
147
169
  msgstr ""
148
170
 
149
171
  #:
150
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51
151
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
172
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:38
173
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
174
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:52
152
175
  msgid "Add Volume"
153
176
  msgstr ""
154
177
 
155
178
  #:
156
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51
157
- #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
179
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:38
180
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
181
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:52
158
182
  msgid "add new storage volume"
159
183
  msgstr ""
160
184
 
161
- #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:5
162
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:16
185
+ #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:6
186
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
163
187
  #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:7
164
188
  msgid "Type"
165
189
  msgstr ""
@@ -177,7 +201,7 @@ msgid "VM ID"
177
201
  msgstr ""
178
202
 
179
203
  #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:18
180
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
204
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:37
181
205
  msgid "Image"
182
206
  msgstr ""
183
207
 
@@ -191,7 +215,7 @@ msgstr ""
191
215
  #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:6
192
216
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:5
193
217
  #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:6
194
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:6
218
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
195
219
  msgid "Main option"
196
220
  msgid_plural "Main options"
197
221
  msgstr[0] ""
@@ -201,7 +225,7 @@ msgstr[1] ""
201
225
  #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:8
202
226
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:9
203
227
  #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:8
204
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:15
228
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:16
205
229
  msgid "CPU"
206
230
  msgstr ""
207
231
 
@@ -210,8 +234,8 @@ msgstr ""
210
234
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:15
211
235
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:16
212
236
  #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:10
213
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:26
214
237
  #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:27
238
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
215
239
  #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:9
216
240
  msgid "Memory"
217
241
  msgstr ""
@@ -229,12 +253,12 @@ msgid "OS"
229
253
  msgstr ""
230
254
 
231
255
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:6
232
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
256
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
233
257
  msgid "Description"
234
258
  msgstr ""
235
259
 
236
260
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:7
237
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
261
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
238
262
  msgid "Start at boot"
239
263
  msgstr ""
240
264
 
@@ -245,19 +269,19 @@ msgstr ""
245
269
 
246
270
  #:
247
271
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:11
248
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
272
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
249
273
  msgid "Cores"
250
274
  msgstr ""
251
275
 
252
276
  #:
253
277
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:12
254
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
278
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
255
279
  msgid "CPU limit"
256
280
  msgstr ""
257
281
 
258
282
  #:
259
283
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:13
260
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
284
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
261
285
  msgid "CPU units"
262
286
  msgstr ""
263
287
 
@@ -283,13 +307,13 @@ msgstr ""
283
307
 
284
308
  #:
285
309
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:24
286
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:41
310
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:43
287
311
  msgid "Operating System"
288
312
  msgstr ""
289
313
 
290
314
  #:
291
315
  #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:25
292
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:42
316
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:44
293
317
  msgid "OS type"
294
318
  msgstr ""
295
319
 
@@ -315,57 +339,67 @@ msgstr ""
315
339
 
316
340
  #:
317
341
  #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:5
318
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:6
342
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:5
319
343
  msgid "Nic"
320
344
  msgstr ""
321
345
 
322
346
  #:
323
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:6
347
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7
324
348
  #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:6
325
349
  msgid "Name"
326
350
  msgstr ""
327
351
 
328
352
  #:
329
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7
353
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
330
354
  #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
331
355
  msgid "VLAN tag"
332
356
  msgstr ""
333
357
 
334
358
  #:
335
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
359
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9
336
360
  #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
337
361
  msgid "Rate limit"
338
362
  msgstr ""
339
363
 
340
364
  #:
341
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9
365
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:10
342
366
  #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
343
367
  msgid "Bridge"
344
368
  msgstr ""
345
369
 
346
370
  #:
347
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:5
371
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:6
348
372
  msgid "Mount point"
349
373
  msgstr ""
350
374
 
351
375
  #:
352
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:7
376
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8
353
377
  #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:7
354
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:37
355
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:7
378
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:39
379
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
356
380
  msgid "Storage"
357
381
  msgstr ""
358
382
 
359
383
  #:
360
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8
361
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
362
- msgid "Device"
384
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
385
+ msgid "Path"
363
386
  msgstr ""
364
387
 
365
388
  #:
366
389
  #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
390
+ msgid "e.g. /path/to/"
391
+ msgstr ""
392
+
393
+ #:
394
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:10
395
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
396
+ msgid "Device"
397
+ msgstr ""
398
+
399
+ #:
400
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:11
367
401
  #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:8
368
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
402
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:12
369
403
  msgid "Size"
370
404
  msgstr ""
371
405
 
@@ -378,75 +412,79 @@ msgstr ""
378
412
  msgid "CDROM"
379
413
  msgstr ""
380
414
 
381
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
382
- msgid "Start/Shutdown order"
415
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
416
+ msgid "Boot device order"
383
417
  msgstr ""
384
418
 
385
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
386
- msgid "Qemu Agent"
419
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
420
+ msgid "Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn"
387
421
  msgstr ""
388
422
 
389
423
  #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
424
+ msgid "Qemu Agent"
425
+ msgstr ""
426
+
427
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
390
428
  msgid "KVM"
391
429
  msgstr ""
392
430
 
393
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
431
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
394
432
  msgid "Enable/disable KVM hardware virtualization"
395
433
  msgstr ""
396
434
 
397
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
435
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
398
436
  msgid "Keyboard"
399
437
  msgstr ""
400
438
 
401
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
439
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:14
402
440
  msgid "VGA"
403
441
  msgstr ""
404
442
 
405
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
443
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
406
444
  msgid "Sockets"
407
445
  msgstr ""
408
446
 
409
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
447
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
410
448
  msgid "VCPUs"
411
449
  msgstr ""
412
450
 
413
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
451
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
414
452
  msgid "Enable NUMA"
415
453
  msgstr ""
416
454
 
417
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
455
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
418
456
  msgid "PCID"
419
457
  msgstr ""
420
458
 
421
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
459
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:25
422
460
  msgid "Spectre-CTRL"
423
461
  msgstr ""
424
462
 
425
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
463
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
426
464
  msgid "Minimum memory"
427
465
  msgstr ""
428
466
 
429
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
467
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:31
430
468
  msgid "Shares"
431
469
  msgstr ""
432
470
 
433
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
471
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
434
472
  msgid "Ballooning Device"
435
473
  msgstr ""
436
474
 
437
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
475
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
438
476
  msgid "CD-ROM"
439
477
  msgstr ""
440
478
 
441
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
479
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
442
480
  msgid "None"
443
481
  msgstr ""
444
482
 
445
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
483
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:36
446
484
  msgid "Physical"
447
485
  msgstr ""
448
486
 
449
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
487
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:40
450
488
  msgid "Image ISO"
451
489
  msgstr ""
452
490
 
@@ -466,15 +504,15 @@ msgstr ""
466
504
  msgid "Disconnect"
467
505
  msgstr ""
468
506
 
469
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:5
507
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:6
470
508
  msgid "Disk"
471
509
  msgstr ""
472
510
 
473
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
511
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
474
512
  msgid "Controller"
475
513
  msgstr ""
476
514
 
477
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
515
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
478
516
  msgid "Cache"
479
517
  msgstr ""
480
518
 
@@ -520,7 +558,7 @@ msgstr ""
520
558
  msgid "Foreman Fog Proxmox widget"
521
559
  msgstr ""
522
560
 
523
- #: gemspec.rb:2
561
+ #: gemspec.rb:4
524
562
  msgid ""
525
563
  "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog"
526
564
  "-proxmox gem."