foreman_fog_proxmox 0.9.4 → 0.10.0

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 (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js +89 -0
  3. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_container.js +5 -41
  4. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_server.js +2 -21
  5. data/app/controllers/concerns/foreman_fog_proxmox/controller/parameters/compute_resource.rb +1 -1
  6. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +46 -6
  7. data/app/helpers/proxmox_container_helper.rb +3 -1
  8. data/app/helpers/proxmox_server_helper.rb +2 -1
  9. data/app/helpers/proxmox_vm_helper.rb +19 -0
  10. data/app/models/concerns/fog_extensions/proxmox/node.rb +0 -5
  11. data/app/models/concerns/fog_extensions/proxmox/server.rb +1 -1
  12. data/app/models/foreman_fog_proxmox/proxmox.rb +9 -13
  13. data/app/models/foreman_fog_proxmox/proxmox_images.rb +10 -5
  14. data/app/models/foreman_fog_proxmox/proxmox_vm_commands.rb +6 -2
  15. data/app/models/foreman_fog_proxmox/proxmox_vm_new.rb +22 -6
  16. data/app/models/foreman_fog_proxmox/proxmox_vm_queries.rb +9 -7
  17. data/app/models/foreman_fog_proxmox/vms.rb +37 -0
  18. data/app/overrides/compute_resources_vms/form/add_vm_type_node_to_new_form.rb +25 -0
  19. data/app/views/compute_resources/form/_proxmox.html.erb +0 -2
  20. data/app/views/compute_resources/show/_proxmox.html.erb +4 -0
  21. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_node_to_new_form.html.erb +24 -0
  22. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb +2 -1
  23. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb +2 -1
  24. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_nic_provider_specific_form.html.erb +3 -2
  25. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb +6 -5
  26. data/app/views/compute_resources_vms/form/proxmox/_base.html.erb +3 -3
  27. data/app/views/compute_resources_vms/form/proxmox/_general.html.erb +2 -1
  28. data/app/views/compute_resources_vms/form/proxmox/_network.html.erb +2 -2
  29. data/app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb +3 -2
  30. data/app/views/compute_resources_vms/form/proxmox/container/_network.html.erb +4 -3
  31. data/app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb +1 -1
  32. data/app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb +1 -1
  33. data/app/views/compute_resources_vms/form/proxmox/server/_config.html.erb +1 -1
  34. data/app/views/compute_resources_vms/form/proxmox/server/_network.html.erb +4 -3
  35. data/app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb +1 -1
  36. data/app/views/compute_resources_vms/index/_proxmox.html.erb +4 -2
  37. data/config/routes.rb +7 -2
  38. data/lib/foreman_fog_proxmox/engine.rb +4 -0
  39. data/lib/foreman_fog_proxmox/version.rb +1 -1
  40. data/locale/en/foreman_fog_proxmox.edit.po +508 -0
  41. data/locale/en/foreman_fog_proxmox.po +34 -7
  42. data/locale/en/foreman_fog_proxmox.po.time_stamp +0 -0
  43. data/locale/foreman_fog_proxmox.pot +112 -70
  44. data/locale/fr/foreman_fog_proxmox.edit.po +508 -0
  45. data/locale/fr/foreman_fog_proxmox.po +39 -12
  46. data/locale/fr/foreman_fog_proxmox.po.time_stamp +0 -0
  47. data/test/factories/foreman_fog_proxmox/proxmox_node_mock_factory.rb +28 -8
  48. data/test/factories/proxmox_factory.rb +0 -1
  49. data/test/functional/compute_resources_controller_test.rb +16 -4
  50. data/test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb +1 -0
  51. data/test/unit/foreman_fog_proxmox/proxmox_test.rb +0 -1
  52. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb +33 -8
  53. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb +2 -2
  54. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb +22 -2
  55. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_volumes_test.rb +18 -6
  56. metadata +9 -2
@@ -19,7 +19,12 @@
19
19
 
20
20
  Rails.application.routes.draw do
21
21
  namespace :foreman_fog_proxmox do
22
- match 'isos/:storage', :to => 'compute_resources#isos', :via => 'get'
23
- match 'ostemplates/:storage', :to => 'compute_resources#ostemplates', :via => 'get'
22
+ match 'isos/:node_id/:storage', :to => 'compute_resources#isos_by_node_and_storage', :via => 'get'
23
+ match 'ostemplates/:node_id/:storage', :to => 'compute_resources#ostemplates_by_node_and_storage', :via => 'get'
24
+ match 'isos/:node_id', :to => 'compute_resources#isos_by_node', :via => 'get'
25
+ match 'ostemplates/:node_id', :to => 'compute_resources#ostemplates_by_node', :via => 'get'
26
+ match 'storages/:node_id', :to => 'compute_resources#storages_by_node', :via => 'get'
27
+ match 'isostorages/:node_id', :to => 'compute_resources#iso_storages_by_node', :via => 'get'
28
+ match 'bridges/:node_id', :to => 'compute_resources#bridges_by_node', :via => 'get'
24
29
  end
25
30
  end
@@ -44,6 +44,10 @@ module ForemanFogProxmox
44
44
  parameter_filter(ComputeResource, :uuid)
45
45
  # add dashboard widget
46
46
  widget 'foreman_fog_proxmox_widget', name: N_('Foreman Fog Proxmox widget'), sizex: 8, sizey: 1
47
+ security_block :foreman_fog_proxmox do
48
+ permission :view_compute_resource, 'foreman_fog_proxmox/compute_resources' =>
49
+ [:ostemplates_by_node_and_storage, :isos_by_node_and_storage, :ostemplates_by_node, :isos_by_node, :storages_by_node, :iso_storages_by_node, :bridges_by_node]
50
+ end
47
51
  end
48
52
  end
49
53
 
@@ -18,5 +18,5 @@
18
18
  # along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module ForemanFogProxmox
21
- VERSION = '0.9.4'
21
+ VERSION = '0.10.0'
22
22
  end
@@ -0,0 +1,508 @@
1
+ # English translations for foreman_fog_proxmox package.
2
+ # Copyright (C) 2018 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_fog_proxmox package.
4
+ # Tristan Robert <tristan.robert.44@gmail.com>, 2018.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "PO-Revision-Date: 2018-07-17 15:16+0200\n"
11
+ "Last-Translator: Tristan Robert <tristan.robert.44@gmail.com>\n"
12
+ "Language-Team: English\n"
13
+ "Language: en\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
+ "\n"
19
+
20
+ #: ../app/helpers/node_dashboard_helper.rb:33
21
+ msgid "Time"
22
+ msgstr ""
23
+
24
+ #: ../app/helpers/node_dashboard_helper.rb:33
25
+ msgid "Average load (x100)"
26
+ msgstr ""
27
+
28
+ #: ../app/helpers/proxmox_form_helper.rb:35
29
+ msgid "Change the password"
30
+ msgstr ""
31
+
32
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:30
33
+ msgid "Failed to update a compute %<compute_resource>s instance %<name>s: %<e>s"
34
+ msgstr ""
35
+
36
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:38
37
+ msgid "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s"
38
+ msgstr ""
39
+
40
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:87
41
+ msgid "Unable to store X509 certificates"
42
+ msgstr ""
43
+
44
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:112
45
+ msgid "Failed retrieving proxmox compute client caused by %<e>s"
46
+ msgstr ""
47
+
48
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:119
49
+ msgid "Failed retrieving proxmox identity client caused by %<e>s"
50
+ msgstr ""
51
+
52
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:126
53
+ msgid "Failed retrieving proxmox network client caused by %<e>s"
54
+ msgstr ""
55
+
56
+ #: ../app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb:31
57
+ msgid "Operating system family %<type>s is not consistent with %<ostype>s"
58
+ msgstr ""
59
+
60
+ #: ../app/models/foreman_fog_proxmox/proxmox_console.rb:37
61
+ msgid "%<s>s console is not supported at this time"
62
+ msgstr ""
63
+
64
+ #: ../app/models/foreman_fog_proxmox/proxmox_images.rb:51
65
+ msgid "create_vm(): clone %<image_id>s in %<vmid>s"
66
+ msgstr ""
67
+
68
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:25
69
+ msgid "Proxmox compute resource version is %<version>s"
70
+ msgstr ""
71
+
72
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:26
73
+ msgid "Proxmox version %<version>s is not semver suitable"
74
+ msgstr ""
75
+
76
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:34
77
+ msgid "invalid vmid=%<vmid>s"
78
+ msgstr ""
79
+
80
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:53
81
+ msgid "failed to create vm: %<e>s"
82
+ msgstr ""
83
+
84
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:152
85
+ msgid "new_vm() vm.config=%<config>s"
86
+ msgstr ""
87
+
88
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:163
89
+ msgid "new_container_vm() vm.config=%<config>s"
90
+ msgstr ""
91
+
92
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:174
93
+ msgid "new_server_vm() vm.config=%<config>s"
94
+ msgstr ""
95
+
96
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_queries.rb:72
97
+ msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
98
+ msgstr ""
99
+
100
+ #: ../app/models/foreman_fog_proxmox/proxmox_volumes.rb:42
101
+ msgid "Unable to shrink %<id>s size. Proxmox allows only increasing size."
102
+ msgstr ""
103
+
104
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:8
105
+ msgid "Renew expired token ?"
106
+ msgstr ""
107
+
108
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
109
+ msgid "e.g. https://127.0.0.1:8006/api2/json"
110
+ msgstr ""
111
+
112
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
113
+ msgid "Test failed"
114
+ msgstr ""
115
+
116
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
117
+ msgid "e.g. root@pam"
118
+ msgstr ""
119
+
120
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:12
121
+ msgid "SSL verify peer"
122
+ msgstr ""
123
+
124
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:13
125
+ msgid "X509 Certification Authorities"
126
+ msgstr ""
127
+
128
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:14
129
+ msgid "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer."
130
+ msgstr ""
131
+
132
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:4
133
+ msgid "URL"
134
+ msgstr ""
135
+
136
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:8
137
+ msgid "Version"
138
+ msgstr ""
139
+
140
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:12
141
+ msgid "Token has expired?"
142
+ msgstr ""
143
+
144
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:16
145
+ msgid "Token expires on"
146
+ msgstr ""
147
+
148
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:20
149
+ msgid "Cluster nodes"
150
+ msgstr ""
151
+
152
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:15
153
+ msgid "remove network interface"
154
+ msgstr ""
155
+
156
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:18 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:26 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:30 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:34 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:45 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:49
157
+ msgid "remove storage volume"
158
+ msgstr ""
159
+
160
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:40 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:53
161
+ msgid "Add Volume"
162
+ msgstr ""
163
+
164
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:40 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:53
165
+ msgid "add new storage volume"
166
+ msgstr ""
167
+
168
+ #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17 ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
169
+ msgid "Type"
170
+ msgstr ""
171
+
172
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
173
+ msgid "General"
174
+ msgstr ""
175
+
176
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
177
+ msgid "Create image?"
178
+ msgstr ""
179
+
180
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
181
+ msgid "VM ID"
182
+ msgstr ""
183
+
184
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8 ../app/views/compute_resources_vms/index/_proxmox.html.erb:7
185
+ msgid "Node"
186
+ msgstr ""
187
+
188
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:9
189
+ msgid "Start after creation?"
190
+ msgstr ""
191
+
192
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:19 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:37
193
+ msgid "Image"
194
+ msgstr ""
195
+
196
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:5
197
+ msgid "Advanced"
198
+ msgstr ""
199
+
200
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
201
+ msgid "Main option"
202
+ msgid_plural "Main options"
203
+ msgstr[0] ""
204
+ msgstr[1] ""
205
+
206
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:16
207
+ msgid "CPU"
208
+ msgstr ""
209
+
210
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:15 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:16 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:27 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29 ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
211
+ msgid "Memory"
212
+ msgstr ""
213
+
214
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:19
215
+ msgid "DNS"
216
+ msgstr ""
217
+
218
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:14 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:14
219
+ msgid "OS"
220
+ msgstr ""
221
+
222
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
223
+ msgid "Description"
224
+ msgstr ""
225
+
226
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
227
+ msgid "Start at boot"
228
+ msgstr ""
229
+
230
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:10
231
+ msgid "Architecture"
232
+ msgstr ""
233
+
234
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
235
+ msgid "Cores"
236
+ msgstr ""
237
+
238
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
239
+ msgid "CPU limit"
240
+ msgstr ""
241
+
242
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:13 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
243
+ msgid "CPU units"
244
+ msgstr ""
245
+
246
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:17
247
+ msgid "Swap"
248
+ msgstr ""
249
+
250
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:20
251
+ msgid "Hostname"
252
+ msgstr ""
253
+
254
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:21
255
+ msgid "DNS server"
256
+ msgstr ""
257
+
258
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:22
259
+ msgid "Search domain"
260
+ msgstr ""
261
+
262
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:24 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:43
263
+ msgid "Operating System"
264
+ msgstr ""
265
+
266
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:25 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:44
267
+ msgid "OS type"
268
+ msgstr ""
269
+
270
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:6
271
+ msgid "Extended"
272
+ msgstr ""
273
+
274
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:8
275
+ msgid "Template storage"
276
+ msgstr ""
277
+
278
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:9
279
+ msgid "OS Template"
280
+ msgstr ""
281
+
282
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:11
283
+ msgid "Root password"
284
+ msgstr ""
285
+
286
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:6
287
+ msgid "Nic"
288
+ msgstr ""
289
+
290
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8 ../app/views/compute_resources_vms/index/_proxmox.html.erb:6
291
+ msgid "Name"
292
+ msgstr ""
293
+
294
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9
295
+ msgid "DHCP IPv4"
296
+ msgstr ""
297
+
298
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:10
299
+ msgid "CIDR IPv4 prefix"
300
+ msgstr ""
301
+
302
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:11
303
+ msgid "Gateway IPv4"
304
+ msgstr ""
305
+
306
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:12
307
+ msgid "DHCP IPv6"
308
+ msgstr ""
309
+
310
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:13
311
+ msgid "CIDR IPv6 prefix"
312
+ msgstr ""
313
+
314
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:14
315
+ msgid "Gateway IPv6"
316
+ msgstr ""
317
+
318
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:15 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
319
+ msgid "VLAN tag"
320
+ msgstr ""
321
+
322
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:16 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
323
+ msgid "Rate limit"
324
+ msgstr ""
325
+
326
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:17 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
327
+ msgid "Bridge"
328
+ msgstr ""
329
+
330
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:6
331
+ msgid "Mount point"
332
+ msgstr ""
333
+
334
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:39 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
335
+ msgid "Storage"
336
+ msgstr ""
337
+
338
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
339
+ msgid "Path"
340
+ msgstr ""
341
+
342
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
343
+ msgid "e.g. /path/to/"
344
+ msgstr ""
345
+
346
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
347
+ msgid "Device"
348
+ msgstr ""
349
+
350
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:12
351
+ msgid "Size"
352
+ msgstr ""
353
+
354
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
355
+ msgid "Rootfs"
356
+ msgstr ""
357
+
358
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
359
+ msgid "CDROM"
360
+ msgstr ""
361
+
362
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
363
+ msgid "Boot device order"
364
+ msgstr ""
365
+
366
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
367
+ msgid "Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn"
368
+ msgstr ""
369
+
370
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
371
+ msgid "Qemu Agent"
372
+ msgstr ""
373
+
374
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
375
+ msgid "KVM"
376
+ msgstr ""
377
+
378
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
379
+ msgid "Enable/disable KVM hardware virtualization"
380
+ msgstr ""
381
+
382
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
383
+ msgid "Keyboard"
384
+ msgstr ""
385
+
386
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:14
387
+ msgid "VGA"
388
+ msgstr ""
389
+
390
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
391
+ msgid "Sockets"
392
+ msgstr ""
393
+
394
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
395
+ msgid "VCPUs"
396
+ msgstr ""
397
+
398
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
399
+ msgid "Enable NUMA"
400
+ msgstr ""
401
+
402
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
403
+ msgid "PCID"
404
+ msgstr ""
405
+
406
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:25
407
+ msgid "Spectre-CTRL"
408
+ msgstr ""
409
+
410
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
411
+ msgid "Minimum memory"
412
+ msgstr ""
413
+
414
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:31
415
+ msgid "Shares"
416
+ msgstr ""
417
+
418
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
419
+ msgid "Ballooning Device"
420
+ msgstr ""
421
+
422
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
423
+ msgid "CD-ROM"
424
+ msgstr ""
425
+
426
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
427
+ msgid "None"
428
+ msgstr ""
429
+
430
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:36
431
+ msgid "Physical"
432
+ msgstr ""
433
+
434
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:40
435
+ msgid "Image ISO"
436
+ msgstr ""
437
+
438
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
439
+ msgid "Card"
440
+ msgstr ""
441
+
442
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
443
+ msgid "Multiqueue"
444
+ msgstr ""
445
+
446
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
447
+ msgid "Firewall"
448
+ msgstr ""
449
+
450
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:14
451
+ msgid "Disconnect"
452
+ msgstr ""
453
+
454
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:6
455
+ msgid "Disk"
456
+ msgstr ""
457
+
458
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
459
+ msgid "Controller"
460
+ msgstr ""
461
+
462
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
463
+ msgid "Cache"
464
+ msgstr ""
465
+
466
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:9
467
+ msgid "CPUs"
468
+ msgstr ""
469
+
470
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
471
+ msgid "Power"
472
+ msgstr ""
473
+
474
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:12
475
+ msgid "Uptime"
476
+ msgstr ""
477
+
478
+ #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
479
+ msgid "Proxmox Node Statistics: %s"
480
+ msgstr ""
481
+
482
+ #: ../app/views/images/form/_proxmox.html.erb:3
483
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
484
+ msgstr ""
485
+
486
+ #: ../app/views/images/form/_proxmox.html.erb:4
487
+ msgid "Password to authenticate with - used for SSH finish step."
488
+ msgstr ""
489
+
490
+ #: ../app/views/images/form/_proxmox.html.erb:5
491
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
492
+ msgstr ""
493
+
494
+ #: ../app/views/images/form/_proxmox.html.erb:6
495
+ msgid "Image VMID"
496
+ msgstr ""
497
+
498
+ #: ../app/views/images/form/_proxmox.html.erb:6
499
+ msgid "vmid of template vm."
500
+ msgstr ""
501
+
502
+ #: ../lib/foreman_fog_proxmox/engine.rb:46
503
+ msgid "Foreman Fog Proxmox widget"
504
+ msgstr ""
505
+
506
+ #: gemspec.rb:4
507
+ msgid "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem."
508
+ msgstr ""