foreman_fog_proxmox 0.14.0 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +42 -29
  3. data/app/controllers/concerns/foreman_fog_proxmox/compute_resources_vms_controller.rb +17 -7
  4. data/app/controllers/concerns/foreman_fog_proxmox/controller/parameters/compute_resource.rb +1 -1
  5. data/app/controllers/concerns/foreman_fog_proxmox/hosts_controller.rb +8 -3
  6. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +6 -3
  7. data/app/helpers/proxmox_compute_controllers_helper.rb +2 -1
  8. data/app/helpers/proxmox_compute_resources_helper.rb +3 -3
  9. data/app/helpers/proxmox_compute_resources_vms_helper.rb +16 -7
  10. data/app/helpers/proxmox_form_helper.rb +9 -5
  11. data/app/helpers/proxmox_vm_config_helper.rb +16 -25
  12. data/app/helpers/proxmox_vm_interfaces_helper.rb +19 -6
  13. data/app/helpers/proxmox_vm_os_template_helper.rb +2 -5
  14. data/app/helpers/proxmox_vm_uuid_helper.rb +1 -1
  15. data/app/helpers/proxmox_vm_volumes_helper.rb +22 -25
  16. data/app/models/concerns/fog_extensions/proxmox/node.rb +2 -2
  17. data/app/models/concerns/fog_extensions/proxmox/server.rb +9 -5
  18. data/app/models/concerns/host_ext/proxmox/associator.rb +3 -2
  19. data/app/models/concerns/host_ext/proxmox/for_vm.rb +1 -1
  20. data/app/models/concerns/host_ext/proxmox/interfaces.rb +7 -3
  21. data/app/models/concerns/orchestration/proxmox/compute.rb +11 -4
  22. data/app/models/foreman_fog_proxmox/options_select.rb +1 -3
  23. data/app/models/foreman_fog_proxmox/proxmox.rb +12 -10
  24. data/app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb +15 -3
  25. data/app/models/foreman_fog_proxmox/proxmox_connection.rb +6 -2
  26. data/app/models/foreman_fog_proxmox/proxmox_console.rb +3 -1
  27. data/app/models/foreman_fog_proxmox/proxmox_images.rb +2 -2
  28. data/app/models/foreman_fog_proxmox/proxmox_interfaces.rb +28 -6
  29. data/app/models/foreman_fog_proxmox/proxmox_operating_systems.rb +6 -1
  30. data/app/models/foreman_fog_proxmox/proxmox_pools.rb +4 -4
  31. data/app/models/foreman_fog_proxmox/proxmox_version.rb +7 -3
  32. data/app/models/foreman_fog_proxmox/proxmox_vm_commands.rb +9 -7
  33. data/app/models/foreman_fog_proxmox/proxmox_vm_new.rb +37 -24
  34. data/app/models/foreman_fog_proxmox/proxmox_vm_queries.rb +4 -5
  35. data/app/models/foreman_fog_proxmox/proxmox_volumes.rb +23 -12
  36. data/app/models/foreman_fog_proxmox/vms.rb +2 -2
  37. data/app/views/compute_resources_vms/form/proxmox/container/_config.html.erb +2 -2
  38. data/app/views/compute_resources_vms/form/proxmox/container/_network.html.erb +2 -2
  39. data/app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb +1 -1
  40. data/app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb +1 -1
  41. data/app/views/compute_resources_vms/form/proxmox/server/_config.html.erb +3 -3
  42. data/app/views/compute_resources_vms/form/proxmox/server/_network.html.erb +3 -3
  43. data/app/views/compute_resources_vms/form/proxmox/server/_volume_hard_disk.html.erb +1 -1
  44. data/config/routes.rb +8 -4
  45. data/db/migrate/20210312105013_update_proxmox_uuid_host.rb +1 -2
  46. data/lib/foreman_fog_proxmox/engine.rb +4 -3
  47. data/lib/foreman_fog_proxmox/semver.rb +1 -4
  48. data/lib/foreman_fog_proxmox/version.rb +1 -1
  49. data/locale/en/foreman_fog_proxmox.po +140 -47
  50. data/locale/foreman_fog_proxmox.pot +300 -137
  51. data/locale/fr/foreman_fog_proxmox.po +145 -52
  52. data/test/factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb +6 -7
  53. data/test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb +6 -7
  54. data/test/functional/compute_resources_controller_test.rb +4 -2
  55. data/test/test_plugin_helper.rb +12 -7
  56. data/test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb +38 -47
  57. data/test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb +49 -34
  58. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb +29 -65
  59. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_volumes_helper_test.rb +3 -3
  60. data/test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb +22 -13
  61. data/test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb +18 -9
  62. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb +45 -35
  63. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb +0 -4
  64. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_cdrom_test.rb +34 -22
  65. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_cloudinit_test.rb +20 -14
  66. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_hard_disk_test.rb +76 -54
  67. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb +26 -15
  68. data/test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb +1 -1
  69. data/test/unit/foreman_fog_proxmox/semver_test.rb +2 -1
  70. metadata +34 -20
@@ -20,6 +20,24 @@ msgstr ""
20
20
  msgid "%<s>s console is not supported at this time"
21
21
  msgstr ""
22
22
 
23
+ msgid "%<vm>s is now %<vm_state>s"
24
+ msgstr ""
25
+
26
+ msgid "Access ticket fields"
27
+ msgstr ""
28
+
29
+ msgid "Add CD-ROM"
30
+ msgstr ""
31
+
32
+ msgid "Add Cloud-init"
33
+ msgstr ""
34
+
35
+ msgid "Add Hard Disk"
36
+ msgstr ""
37
+
38
+ msgid "Add Mount Point"
39
+ msgstr ""
40
+
23
41
  msgid "Add Volume"
24
42
  msgstr ""
25
43
 
@@ -29,9 +47,21 @@ msgstr ""
29
47
  msgid "Architecture"
30
48
  msgstr ""
31
49
 
50
+ msgid "Associate VM"
51
+ msgstr ""
52
+
53
+ msgid "Associate VM to a Foreman host"
54
+ msgstr ""
55
+
56
+ msgid "Authentication method"
57
+ msgstr ""
58
+
32
59
  msgid "Average load (x100)"
33
60
  msgstr ""
34
61
 
62
+ msgid "BIOS"
63
+ msgstr ""
64
+
35
65
  msgid "Boot device order"
36
66
  msgstr ""
37
67
 
@@ -41,16 +71,16 @@ msgstr ""
41
71
  msgid "CD-ROM"
42
72
  msgstr ""
43
73
 
44
- msgid "CDROM"
74
+ msgid "CIDR IPv4"
45
75
  msgstr ""
46
76
 
47
- msgid "CIDR IPv4 prefix"
77
+ msgid "CIDR IPv6"
48
78
  msgstr ""
49
79
 
50
- msgid "CIDR IPv6 prefix"
80
+ msgid "CPU"
51
81
  msgstr ""
52
82
 
53
- msgid "CPU"
83
+ msgid "CPU Flags"
54
84
  msgstr ""
55
85
 
56
86
  msgid "CPU limit"
@@ -71,9 +101,24 @@ msgstr ""
71
101
  msgid "Change the password"
72
102
  msgstr ""
73
103
 
104
+ msgid "Click Test connection button before changing it"
105
+ msgstr ""
106
+
107
+ msgid "Click Test connection button to check token"
108
+ msgstr ""
109
+
110
+ msgid "Cloud-init"
111
+ msgstr ""
112
+
74
113
  msgid "Cluster nodes"
75
114
  msgstr ""
76
115
 
116
+ msgid "Common fields"
117
+ msgstr ""
118
+
119
+ msgid "Console"
120
+ msgstr ""
121
+
77
122
  msgid "Controller"
78
123
  msgstr ""
79
124
 
@@ -92,9 +137,15 @@ msgstr ""
92
137
  msgid "DNS"
93
138
  msgstr ""
94
139
 
140
+ msgid "DNS domain"
141
+ msgstr ""
142
+
95
143
  msgid "DNS server"
96
144
  msgstr ""
97
145
 
146
+ msgid "DNS servers"
147
+ msgstr ""
148
+
98
149
  msgid "Description"
99
150
  msgstr ""
100
151
 
@@ -104,9 +155,6 @@ msgstr ""
104
155
  msgid "Disconnect"
105
156
  msgstr ""
106
157
 
107
- msgid "Disk"
108
- msgstr ""
109
-
110
158
  msgid "Does this image support user data input (e.g. via cloud-init)?"
111
159
  msgstr ""
112
160
 
@@ -116,19 +164,19 @@ msgstr ""
116
164
  msgid "Enable/disable KVM hardware virtualization"
117
165
  msgstr ""
118
166
 
119
- msgid "Extended"
167
+ msgid "Error - %<message>s"
120
168
  msgstr ""
121
169
 
122
- msgid "Failed retrieving proxmox compute client caused by %<e>s"
170
+ msgid "Extended"
123
171
  msgstr ""
124
172
 
125
- msgid "Failed retrieving proxmox identity client caused by %<e>s"
173
+ msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
126
174
  msgstr ""
127
175
 
128
- msgid "Failed retrieving proxmox network client caused by %<e>s"
176
+ msgid "Failed to acquire IP addresses from compute resource for %<name>s"
129
177
  msgstr ""
130
178
 
131
- msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
179
+ msgid "Failed to set console: %s"
132
180
  msgstr ""
133
181
 
134
182
  msgid "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s"
@@ -140,9 +188,6 @@ msgstr ""
140
188
  msgid "Firewall"
141
189
  msgstr ""
142
190
 
143
- msgid "Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn"
144
- msgstr ""
145
-
146
191
  msgid "Foreman Fog Proxmox widget"
147
192
  msgstr ""
148
193
 
@@ -158,9 +203,18 @@ msgstr ""
158
203
  msgid "General"
159
204
  msgstr ""
160
205
 
206
+ msgid "Hard disk"
207
+ msgstr ""
208
+
209
+ msgid "Host"
210
+ msgstr ""
211
+
161
212
  msgid "Hostname"
162
213
  msgstr ""
163
214
 
215
+ msgid "Identifier"
216
+ msgstr ""
217
+
164
218
  msgid "Image"
165
219
  msgstr ""
166
220
 
@@ -170,10 +224,13 @@ msgstr ""
170
224
  msgid "Image VMID"
171
225
  msgstr ""
172
226
 
173
- msgid "KVM"
227
+ msgid "Import as managed Host"
228
+ msgstr ""
229
+
230
+ msgid "Import as unmanaged Host"
174
231
  msgstr ""
175
232
 
176
- msgid "Keyboard"
233
+ msgid "KVM"
177
234
  msgstr ""
178
235
 
179
236
  msgid "Main option"
@@ -181,6 +238,9 @@ msgid_plural "Main options"
181
238
  msgstr[0] ""
182
239
  msgstr[1] ""
183
240
 
241
+ msgid "Media"
242
+ msgstr ""
243
+
184
244
  msgid "Memory"
185
245
  msgstr ""
186
246
 
@@ -199,6 +259,9 @@ msgstr ""
199
259
  msgid "Nic"
200
260
  msgstr ""
201
261
 
262
+ msgid "No host found to associate this VM with"
263
+ msgstr ""
264
+
202
265
  msgid "Node"
203
266
  msgstr ""
204
267
 
@@ -223,7 +286,10 @@ msgstr ""
223
286
  msgid "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer."
224
287
  msgstr ""
225
288
 
226
- msgid "PCID"
289
+ msgid "Order your devices, e.g. order=net0;ide2;scsi0. Default empty (any)"
290
+ msgstr ""
291
+
292
+ msgid "Password"
227
293
  msgstr ""
228
294
 
229
295
  msgid "Password to authenticate with - used for SSH finish step."
@@ -244,9 +310,6 @@ msgstr ""
244
310
  msgid "Proxmox Node Statistics: %s"
245
311
  msgstr ""
246
312
 
247
- msgid "Proxmox compute resource version is %<version>s"
248
- msgstr ""
249
-
250
313
  msgid "Proxmox version %<version>s is not semver suitable"
251
314
  msgstr ""
252
315
 
@@ -256,9 +319,6 @@ msgstr ""
256
319
  msgid "Rate limit"
257
320
  msgstr ""
258
321
 
259
- msgid "Renew expired token ?"
260
- msgstr ""
261
-
262
322
  msgid "Root password"
263
323
  msgstr ""
264
324
 
@@ -268,6 +328,12 @@ msgstr ""
268
328
  msgid "SCSI Controller"
269
329
  msgstr ""
270
330
 
331
+ msgid "SSH public key"
332
+ msgstr ""
333
+
334
+ msgid "SSL fields"
335
+ msgstr ""
336
+
271
337
  msgid "SSL verify peer"
272
338
  msgstr ""
273
339
 
@@ -283,9 +349,6 @@ msgstr ""
283
349
  msgid "Sockets"
284
350
  msgstr ""
285
351
 
286
- msgid "Spectre-CTRL"
287
- msgstr ""
288
-
289
352
  msgid "Start after creation?"
290
353
  msgstr ""
291
354
 
@@ -301,22 +364,16 @@ msgstr ""
301
364
  msgid "Template storage"
302
365
  msgstr ""
303
366
 
304
- msgid "Test failed"
305
- msgstr ""
306
-
307
367
  msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
308
368
  msgstr ""
309
369
 
310
370
  msgid "Time"
311
371
  msgstr ""
312
372
 
313
- msgid "Token expires on"
314
- msgstr ""
315
-
316
- msgid "Token has expired?"
373
+ msgid "Type"
317
374
  msgstr ""
318
375
 
319
- msgid "Type"
376
+ msgid "Type %<type>s, node %<node>s, %<cpus>s CPUs and %<memory>s MB memory"
320
377
  msgstr ""
321
378
 
322
379
  msgid "URL"
@@ -331,6 +388,21 @@ msgstr ""
331
388
  msgid "Uptime"
332
389
  msgstr ""
333
390
 
391
+ msgid "User"
392
+ msgstr ""
393
+
394
+ msgid "User token expires"
395
+ msgstr ""
396
+
397
+ msgid "User token fields"
398
+ msgstr ""
399
+
400
+ msgid "User token id"
401
+ msgstr ""
402
+
403
+ msgid "User token value"
404
+ msgstr ""
405
+
334
406
  msgid "VCPUs"
335
407
  msgstr ""
336
408
 
@@ -343,19 +415,31 @@ msgstr ""
343
415
  msgid "VM ID"
344
416
  msgstr ""
345
417
 
418
+ msgid "VM already associated with a host"
419
+ msgstr ""
420
+
421
+ msgid "VM associated to host %s"
422
+ msgstr ""
423
+
346
424
  msgid "Version"
347
425
  msgstr ""
348
426
 
349
427
  msgid "X509 Certification Authorities"
350
428
  msgstr ""
351
429
 
352
- msgid "add new storage volume"
430
+ msgid "add new cd-rom"
431
+ msgstr ""
432
+
433
+ msgid "add new cloud-init"
353
434
  msgstr ""
354
435
 
355
- msgid "add_vm_to_pool(%<poolid>s, %<vmid>s)"
436
+ msgid "add new hard disk"
356
437
  msgstr ""
357
438
 
358
- msgid "create_vm(): clone %<image_id>s in %<vmid>s"
439
+ msgid "add new mount point"
440
+ msgstr ""
441
+
442
+ msgid "add new storage volume"
359
443
  msgstr ""
360
444
 
361
445
  msgid "e.g. /path/to/"
@@ -367,34 +451,43 @@ msgstr ""
367
451
  msgid "e.g. root@pam"
368
452
  msgstr ""
369
453
 
370
- msgid "failed to create vm: %<e>s"
454
+ msgid "eth[n] with n integer >= 0, e.g. eth0"
455
+ msgstr ""
456
+
457
+ msgid "failed to %<action>s %<vm>s"
458
+ msgstr ""
459
+
460
+ msgid "failed to save %<name>s"
371
461
  msgstr ""
372
462
 
373
- msgid "found vm: %<vmid>s member of pool: %<poolid>s"
463
+ msgid "integer within [0..128]"
464
+ msgstr ""
465
+
466
+ msgid "integer within [0..32]"
374
467
  msgstr ""
375
468
 
376
469
  msgid "invalid vmid=%<vmid>s"
377
470
  msgstr ""
378
471
 
379
- msgid "new_container_vm() vm.config=%<config>s"
472
+ msgid "net[n] with n integer >= 0, e.g. net0"
380
473
  msgstr ""
381
474
 
382
- msgid "new_server_vm() vm.config=%<config>s"
475
+ msgid "remove CDROM"
383
476
  msgstr ""
384
477
 
385
- msgid "new_vm() vm.config=%<config>s"
478
+ msgid "remove Cloud-init"
386
479
  msgstr ""
387
480
 
388
- msgid "pool_owner(%<vmid>s)"
481
+ msgid "remove Hard disk"
389
482
  msgstr ""
390
483
 
391
- msgid "remove network interface"
484
+ msgid "remove mount point"
392
485
  msgstr ""
393
486
 
394
- msgid "remove storage volume"
487
+ msgid "remove network interface"
395
488
  msgstr ""
396
489
 
397
- msgid "remove_vm_from_pool(%<poolid>s, %<vmid>s)"
490
+ msgid "remove storage volume"
398
491
  msgstr ""
399
492
 
400
493
  msgid "vmid of template vm."