foreman_fog_proxmox 0.12.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 (113) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +619 -0
  3. data/README.md +290 -0
  4. data/Rakefile +49 -0
  5. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_compute_resource.js +33 -0
  6. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js +187 -0
  7. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_container.js +24 -0
  8. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_server.js +125 -0
  9. data/app/controllers/concerns/foreman_fog_proxmox/controller/parameters/compute_resource.rb +41 -0
  10. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +86 -0
  11. data/app/helpers/node_dashboard_helper.rb +35 -0
  12. data/app/helpers/proxmox_compute_selectors_helper.rb +184 -0
  13. data/app/helpers/proxmox_container_helper.rb +163 -0
  14. data/app/helpers/proxmox_form_helper.rb +70 -0
  15. data/app/helpers/proxmox_server_helper.rb +155 -0
  16. data/app/helpers/proxmox_vm_helper.rb +88 -0
  17. data/app/models/concerns/fog_extensions/proxmox/disk.rb +29 -0
  18. data/app/models/concerns/fog_extensions/proxmox/interface.rb +40 -0
  19. data/app/models/concerns/fog_extensions/proxmox/node.rb +41 -0
  20. data/app/models/concerns/fog_extensions/proxmox/server.rb +93 -0
  21. data/app/models/concerns/fog_extensions/proxmox/server_config.rb +71 -0
  22. data/app/models/concerns/fog_extensions/proxmox/volume.rb +29 -0
  23. data/app/models/concerns/host_ext/proxmox/interfaces.rb +52 -0
  24. data/app/models/concerns/orchestration/proxmox/compute.rb +42 -0
  25. data/app/models/foreman_fog_proxmox/options_select.rb +36 -0
  26. data/app/models/foreman_fog_proxmox/proxmox.rb +133 -0
  27. data/app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb +67 -0
  28. data/app/models/foreman_fog_proxmox/proxmox_connection.rb +67 -0
  29. data/app/models/foreman_fog_proxmox/proxmox_console.rb +41 -0
  30. data/app/models/foreman_fog_proxmox/proxmox_images.rb +61 -0
  31. data/app/models/foreman_fog_proxmox/proxmox_interfaces.rb +103 -0
  32. data/app/models/foreman_fog_proxmox/proxmox_operating_systems.rb +49 -0
  33. data/app/models/foreman_fog_proxmox/proxmox_pools.rb +56 -0
  34. data/app/models/foreman_fog_proxmox/proxmox_token_expiration.rb +30 -0
  35. data/app/models/foreman_fog_proxmox/proxmox_version.rb +36 -0
  36. data/app/models/foreman_fog_proxmox/proxmox_vm_commands.rb +116 -0
  37. data/app/models/foreman_fog_proxmox/proxmox_vm_new.rb +178 -0
  38. data/app/models/foreman_fog_proxmox/proxmox_vm_queries.rb +75 -0
  39. data/app/models/foreman_fog_proxmox/proxmox_volumes.rb +94 -0
  40. data/app/models/foreman_fog_proxmox/vms.rb +37 -0
  41. data/app/overrides/compute_resources_vms/form/add_clone_to_new_vm_compute_detail.rb +25 -0
  42. data/app/overrides/compute_resources_vms/form/add_from_profile_to_compute_attributes_form.rb +34 -0
  43. data/app/overrides/compute_resources_vms/form/add_vm_type_node_to_new_form.rb +25 -0
  44. data/app/overrides/compute_resources_vms/form/add_vm_type_to_networks_form.rb +34 -0
  45. data/app/overrides/compute_resources_vms/form/add_vm_type_to_nic_provider_specific_form.rb +26 -0
  46. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_edit.rb +25 -0
  47. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_new_volume.rb +25 -0
  48. data/app/overrides/compute_resources_vms/form/remove_new_vm_from_removable_layout.rb +25 -0
  49. data/app/services/foreman_fog_proxmox/node_dashboard/data.rb +37 -0
  50. data/app/views/api/v2/compute_resources/proxmox.json.rabl +3 -0
  51. data/app/views/compute_resources/form/_proxmox.html.erb +29 -0
  52. data/app/views/compute_resources/show/_proxmox.html.erb +37 -0
  53. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_compute_attributes_form.html.erb +23 -0
  54. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_compute_form.html.erb +23 -0
  55. data/app/views/compute_resources_vms/form/proxmox/_add_from_profile_to_hosts_compute_detail_form.html.erb +24 -0
  56. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_node_to_new_form.html.erb +24 -0
  57. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb +28 -0
  58. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb +32 -0
  59. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_nic_provider_specific_form.html.erb +30 -0
  60. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb +71 -0
  61. data/app/views/compute_resources_vms/form/proxmox/_base.html.erb +39 -0
  62. data/app/views/compute_resources_vms/form/proxmox/_general.html.erb +39 -0
  63. data/app/views/compute_resources_vms/form/proxmox/_network.html.erb +19 -0
  64. data/app/views/compute_resources_vms/form/proxmox/_removable_layout.html.erb +27 -0
  65. data/app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb +31 -0
  66. data/app/views/compute_resources_vms/form/proxmox/container/_config.html.erb +41 -0
  67. data/app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb +27 -0
  68. data/app/views/compute_resources_vms/form/proxmox/container/_network.html.erb +33 -0
  69. data/app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb +27 -0
  70. data/app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb +24 -0
  71. data/app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb +31 -0
  72. data/app/views/compute_resources_vms/form/proxmox/server/_config.html.erb +60 -0
  73. data/app/views/compute_resources_vms/form/proxmox/server/_network.html.erb +30 -0
  74. data/app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb +28 -0
  75. data/app/views/compute_resources_vms/index/_proxmox.html.erb +49 -0
  76. data/app/views/compute_resources_vms/show/_proxmox.html.erb +42 -0
  77. data/app/views/dashboard/_foreman_fog_proxmox_widget.erb +21 -0
  78. data/app/views/images/form/_proxmox.html.erb +21 -0
  79. data/config/routes.rb +30 -0
  80. data/lib/foreman_fog_proxmox.rb +23 -0
  81. data/lib/foreman_fog_proxmox/engine.rb +105 -0
  82. data/lib/foreman_fog_proxmox/semver.rb +102 -0
  83. data/lib/foreman_fog_proxmox/value.rb +26 -0
  84. data/lib/foreman_fog_proxmox/version.rb +22 -0
  85. data/lib/tasks/foreman_fog_proxmox_tasks.rake +37 -0
  86. data/locale/Makefile +60 -0
  87. data/locale/en/foreman_fog_proxmox.po +401 -0
  88. data/locale/foreman_fog_proxmox.pot +627 -0
  89. data/locale/fr/foreman_fog_proxmox.po +401 -0
  90. data/locale/gemspec.rb +4 -0
  91. data/test/factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb +137 -0
  92. data/test/factories/foreman_fog_proxmox/proxmox_node_mock_factory.rb +87 -0
  93. data/test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb +134 -0
  94. data/test/factories/proxmox_factory.rb +79 -0
  95. data/test/functional/compute_resources_controller_test.rb +48 -0
  96. data/test/test_plugin_helper.rb +19 -0
  97. data/test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb +204 -0
  98. data/test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb +149 -0
  99. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb +216 -0
  100. data/test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb +124 -0
  101. data/test/unit/foreman_fog_proxmox/proxmox_images_test.rb +52 -0
  102. data/test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb +117 -0
  103. data/test/unit/foreman_fog_proxmox/proxmox_test.rb +58 -0
  104. data/test/unit/foreman_fog_proxmox/proxmox_version_test.rb +94 -0
  105. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb +280 -0
  106. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb +110 -0
  107. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb +222 -0
  108. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_volumes_test.rb +308 -0
  109. data/test/unit/foreman_fog_proxmox/proxmox_vm_commands_test.rb +43 -0
  110. data/test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb +71 -0
  111. data/test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb +68 -0
  112. data/test/unit/foreman_fog_proxmox/semver_test.rb +111 -0
  113. metadata +249 -0
@@ -0,0 +1,627 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_fog_proxmox package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2020-05-11 16:25+0200\n"
12
+ "PO-Revision-Date: 2020-05-11 16:25+0200\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: ../app/helpers/node_dashboard_helper.rb:33
22
+ msgid "Time"
23
+ msgstr ""
24
+
25
+ #: ../app/helpers/node_dashboard_helper.rb:33
26
+ msgid "Average load (x100)"
27
+ msgstr ""
28
+
29
+ #: ../app/helpers/proxmox_form_helper.rb:35
30
+ msgid "Change the password"
31
+ msgstr ""
32
+
33
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:30
34
+ msgid "Failed to update a compute %<compute_resource>s instance %<name>s: %<e>s"
35
+ msgstr ""
36
+
37
+ #: ../app/models/concerns/orchestration/proxmox/compute.rb:38
38
+ msgid "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s"
39
+ msgstr ""
40
+
41
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:87
42
+ msgid "Unable to store X509 certificates"
43
+ msgstr ""
44
+
45
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:112
46
+ msgid "Failed retrieving proxmox compute client caused by %<e>s"
47
+ msgstr ""
48
+
49
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:119
50
+ msgid "Failed retrieving proxmox identity client caused by %<e>s"
51
+ msgstr ""
52
+
53
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:126
54
+ msgid "Failed retrieving proxmox network client caused by %<e>s"
55
+ msgstr ""
56
+
57
+ #: ../app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb:31
58
+ msgid "Operating system family %<type>s is not consistent with %<ostype>s"
59
+ msgstr ""
60
+
61
+ #: ../app/models/foreman_fog_proxmox/proxmox_console.rb:37
62
+ msgid "%<s>s console is not supported at this time"
63
+ msgstr ""
64
+
65
+ #: ../app/models/foreman_fog_proxmox/proxmox_images.rb:51
66
+ msgid "create_vm(): clone %<image_id>s in %<vmid>s"
67
+ msgstr ""
68
+
69
+ #: ../app/models/foreman_fog_proxmox/proxmox_pools.rb:28
70
+ msgid "pool_owner(%<vmid>s)"
71
+ msgstr ""
72
+
73
+ #: ../app/models/foreman_fog_proxmox/proxmox_pools.rb:31
74
+ msgid "found vm: %<vmid>s member of pool: %<poolid>s"
75
+ msgstr ""
76
+
77
+ #: ../app/models/foreman_fog_proxmox/proxmox_pools.rb:36
78
+ msgid "add_vm_to_pool(%<poolid>s, %<vmid>s)"
79
+ msgstr ""
80
+
81
+ #: ../app/models/foreman_fog_proxmox/proxmox_pools.rb:42
82
+ msgid "remove_vm_from_pool(%<poolid>s, %<vmid>s)"
83
+ msgstr ""
84
+
85
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:25
86
+ msgid "Proxmox compute resource version is %<version>s"
87
+ msgstr ""
88
+
89
+ #: ../app/models/foreman_fog_proxmox/proxmox_version.rb:26
90
+ msgid "Proxmox version %<version>s is not semver suitable"
91
+ msgstr ""
92
+
93
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:35
94
+ msgid "invalid vmid=%<vmid>s"
95
+ msgstr ""
96
+
97
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_commands.rb:54
98
+ msgid "failed to create vm: %<e>s"
99
+ msgstr ""
100
+
101
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:152
102
+ msgid "new_vm() vm.config=%<config>s"
103
+ msgstr ""
104
+
105
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:163
106
+ msgid "new_container_vm() vm.config=%<config>s"
107
+ msgstr ""
108
+
109
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_new.rb:174
110
+ msgid "new_server_vm() vm.config=%<config>s"
111
+ msgstr ""
112
+
113
+ #: ../app/models/foreman_fog_proxmox/proxmox_vm_queries.rb:71
114
+ msgid "Failed retrieving proxmox server vm by vmid=%<vmid>s"
115
+ msgstr ""
116
+
117
+ #: ../app/models/foreman_fog_proxmox/proxmox_volumes.rb:42
118
+ msgid "Unable to shrink %<id>s size. Proxmox allows only increasing size."
119
+ msgstr ""
120
+
121
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:8
122
+ msgid "Renew expired token ?"
123
+ msgstr ""
124
+
125
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
126
+ msgid "e.g. https://127.0.0.1:8006/api2/json"
127
+ msgstr ""
128
+
129
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
130
+ msgid "Test failed"
131
+ msgstr ""
132
+
133
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
134
+ msgid "e.g. root@pam"
135
+ msgstr ""
136
+
137
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:12
138
+ msgid "SSL verify peer"
139
+ msgstr ""
140
+
141
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:13
142
+ msgid "X509 Certification Authorities"
143
+ msgstr ""
144
+
145
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:14
146
+ msgid ""
147
+ "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disab"
148
+ "le ssl_verify_peer."
149
+ msgstr ""
150
+
151
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:4
152
+ msgid "URL"
153
+ msgstr ""
154
+
155
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:8
156
+ msgid "Version"
157
+ msgstr ""
158
+
159
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:12
160
+ msgid "Token has expired?"
161
+ msgstr ""
162
+
163
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:16
164
+ msgid "Token expires on"
165
+ msgstr ""
166
+
167
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:20
168
+ msgid "Cluster nodes"
169
+ msgstr ""
170
+
171
+ #:
172
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:7
173
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:11
174
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:9
175
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:15
176
+ msgid "remove network interface"
177
+ msgstr ""
178
+
179
+ #:
180
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:12
181
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:18
182
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:26
183
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:30
184
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:34
185
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:45
186
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:49
187
+ msgid "remove storage volume"
188
+ msgstr ""
189
+
190
+ #:
191
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
192
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:40
193
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:53
194
+ msgid "Add Volume"
195
+ msgstr ""
196
+
197
+ #:
198
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
199
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:40
200
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:53
201
+ msgid "add new storage volume"
202
+ msgstr ""
203
+
204
+ #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:6
205
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
206
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
207
+ msgid "Type"
208
+ msgstr ""
209
+
210
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
211
+ msgid "General"
212
+ msgstr ""
213
+
214
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
215
+ msgid "Create image?"
216
+ msgstr ""
217
+
218
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
219
+ msgid "VM ID"
220
+ msgstr ""
221
+
222
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
223
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:7
224
+ msgid "Node"
225
+ msgstr ""
226
+
227
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:9
228
+ msgid "Start after creation?"
229
+ msgstr ""
230
+
231
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:19
232
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:36
233
+ msgid "Image"
234
+ msgstr ""
235
+
236
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:23
237
+ msgid "Pool"
238
+ msgstr ""
239
+
240
+ #:
241
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:5
242
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:5
243
+ msgid "Advanced"
244
+ msgstr ""
245
+
246
+ #:
247
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:6
248
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:5
249
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:6
250
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
251
+ msgid "Main option"
252
+ msgid_plural "Main options"
253
+ msgstr[0] ""
254
+ msgstr[1] ""
255
+
256
+ #:
257
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:8
258
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:9
259
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:8
260
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
261
+ msgid "CPU"
262
+ msgstr ""
263
+
264
+ #:
265
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:10
266
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:15
267
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:16
268
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:10
269
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
270
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
271
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
272
+ msgid "Memory"
273
+ msgstr ""
274
+
275
+ #:
276
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:12
277
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:19
278
+ msgid "DNS"
279
+ msgstr ""
280
+
281
+ #:
282
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:14
283
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:14
284
+ msgid "OS"
285
+ msgstr ""
286
+
287
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:6
288
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
289
+ msgid "Description"
290
+ msgstr ""
291
+
292
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:7
293
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
294
+ msgid "Start at boot"
295
+ msgstr ""
296
+
297
+ #:
298
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:10
299
+ msgid "Architecture"
300
+ msgstr ""
301
+
302
+ #:
303
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:11
304
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
305
+ msgid "Cores"
306
+ msgstr ""
307
+
308
+ #:
309
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:12
310
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
311
+ msgid "CPU limit"
312
+ msgstr ""
313
+
314
+ #:
315
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:13
316
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
317
+ msgid "CPU units"
318
+ msgstr ""
319
+
320
+ #:
321
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:17
322
+ msgid "Swap"
323
+ msgstr ""
324
+
325
+ #:
326
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:20
327
+ msgid "Hostname"
328
+ msgstr ""
329
+
330
+ #:
331
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:21
332
+ msgid "DNS server"
333
+ msgstr ""
334
+
335
+ #:
336
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:22
337
+ msgid "Search domain"
338
+ msgstr ""
339
+
340
+ #:
341
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:24
342
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:42
343
+ msgid "Operating System"
344
+ msgstr ""
345
+
346
+ #:
347
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:25
348
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:43
349
+ msgid "OS type"
350
+ msgstr ""
351
+
352
+ #:
353
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:6
354
+ msgid "Extended"
355
+ msgstr ""
356
+
357
+ #:
358
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:8
359
+ msgid "Template storage"
360
+ msgstr ""
361
+
362
+ #:
363
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:9
364
+ msgid "OS Template"
365
+ msgstr ""
366
+
367
+ #:
368
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:11
369
+ msgid "Root password"
370
+ msgstr ""
371
+
372
+ #:
373
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:6
374
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:6
375
+ msgid "Nic"
376
+ msgstr ""
377
+
378
+ #:
379
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
380
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:6
381
+ msgid "Name"
382
+ msgstr ""
383
+
384
+ #:
385
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9
386
+ msgid "DHCP IPv4"
387
+ msgstr ""
388
+
389
+ #:
390
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:10
391
+ msgid "CIDR IPv4 prefix"
392
+ msgstr ""
393
+
394
+ #:
395
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:11
396
+ msgid "Gateway IPv4"
397
+ msgstr ""
398
+
399
+ #:
400
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:12
401
+ msgid "DHCP IPv6"
402
+ msgstr ""
403
+
404
+ #:
405
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:13
406
+ msgid "CIDR IPv6 prefix"
407
+ msgstr ""
408
+
409
+ #:
410
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:14
411
+ msgid "Gateway IPv6"
412
+ msgstr ""
413
+
414
+ #:
415
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:15
416
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
417
+ msgid "VLAN tag"
418
+ msgstr ""
419
+
420
+ #:
421
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:16
422
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
423
+ msgid "Rate limit"
424
+ msgstr ""
425
+
426
+ #:
427
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:17
428
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
429
+ msgid "Bridge"
430
+ msgstr ""
431
+
432
+ #:
433
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:6
434
+ msgid "Mount point"
435
+ msgstr ""
436
+
437
+ #:
438
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8
439
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:7
440
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
441
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
442
+ msgid "Storage"
443
+ msgstr ""
444
+
445
+ #:
446
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
447
+ msgid "Path"
448
+ msgstr ""
449
+
450
+ #:
451
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
452
+ msgid "e.g. /path/to/"
453
+ msgstr ""
454
+
455
+ #:
456
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:10
457
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
458
+ msgid "Device"
459
+ msgstr ""
460
+
461
+ #:
462
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:11
463
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:8
464
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:12
465
+ msgid "Size"
466
+ msgstr ""
467
+
468
+ #:
469
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
470
+ msgid "Rootfs"
471
+ msgstr ""
472
+
473
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
474
+ msgid "CDROM"
475
+ msgstr ""
476
+
477
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
478
+ msgid "Boot device order"
479
+ msgstr ""
480
+
481
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
482
+ msgid "Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn"
483
+ msgstr ""
484
+
485
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
486
+ msgid "Qemu Agent"
487
+ msgstr ""
488
+
489
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
490
+ msgid "KVM"
491
+ msgstr ""
492
+
493
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
494
+ msgid "Enable/disable KVM hardware virtualization"
495
+ msgstr ""
496
+
497
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
498
+ msgid "Keyboard"
499
+ msgstr ""
500
+
501
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:14
502
+ msgid "VGA"
503
+ msgstr ""
504
+
505
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:15
506
+ msgid "SCSI Controller"
507
+ msgstr ""
508
+
509
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
510
+ msgid "Sockets"
511
+ msgstr ""
512
+
513
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
514
+ msgid "VCPUs"
515
+ msgstr ""
516
+
517
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
518
+ msgid "Enable NUMA"
519
+ msgstr ""
520
+
521
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:25
522
+ msgid "PCID"
523
+ msgstr ""
524
+
525
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:26
526
+ msgid "Spectre-CTRL"
527
+ msgstr ""
528
+
529
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
530
+ msgid "Minimum memory"
531
+ msgstr ""
532
+
533
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:31
534
+ msgid "Shares"
535
+ msgstr ""
536
+
537
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
538
+ msgid "CD-ROM"
539
+ msgstr ""
540
+
541
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
542
+ msgid "None"
543
+ msgstr ""
544
+
545
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
546
+ msgid "Physical"
547
+ msgstr ""
548
+
549
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:39
550
+ msgid "Image ISO"
551
+ msgstr ""
552
+
553
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
554
+ msgid "Card"
555
+ msgstr ""
556
+
557
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
558
+ msgid "Multiqueue"
559
+ msgstr ""
560
+
561
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
562
+ msgid "Firewall"
563
+ msgstr ""
564
+
565
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:14
566
+ msgid "Disconnect"
567
+ msgstr ""
568
+
569
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:6
570
+ msgid "Disk"
571
+ msgstr ""
572
+
573
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
574
+ msgid "Controller"
575
+ msgstr ""
576
+
577
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
578
+ msgid "Cache"
579
+ msgstr ""
580
+
581
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:9
582
+ msgid "CPUs"
583
+ msgstr ""
584
+
585
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
586
+ msgid "Power"
587
+ msgstr ""
588
+
589
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:12
590
+ msgid "Uptime"
591
+ msgstr ""
592
+
593
+ #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
594
+ msgid "Proxmox Node Statistics: %s"
595
+ msgstr ""
596
+
597
+ #: ../app/views/images/form/_proxmox.html.erb:3
598
+ msgid ""
599
+ "The user that is used to ssh into the instance, normally cloud-user, ubuntu, r"
600
+ "oot etc"
601
+ msgstr ""
602
+
603
+ #: ../app/views/images/form/_proxmox.html.erb:4
604
+ msgid "Password to authenticate with - used for SSH finish step."
605
+ msgstr ""
606
+
607
+ #: ../app/views/images/form/_proxmox.html.erb:5
608
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
609
+ msgstr ""
610
+
611
+ #: ../app/views/images/form/_proxmox.html.erb:6
612
+ msgid "Image VMID"
613
+ msgstr ""
614
+
615
+ #: ../app/views/images/form/_proxmox.html.erb:6
616
+ msgid "vmid of template vm."
617
+ msgstr ""
618
+
619
+ #: ../lib/foreman_fog_proxmox/engine.rb:46
620
+ msgid "Foreman Fog Proxmox widget"
621
+ msgstr ""
622
+
623
+ #: gemspec.rb:4
624
+ msgid ""
625
+ "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog"
626
+ "-proxmox gem."
627
+ msgstr ""