foreman_fog_proxmox 0.14.1 → 0.14.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dba360e94210ac6442155e678bc2fd6cc3f4fcccb29ff219abb7746981e7dcc6
|
4
|
+
data.tar.gz: 614badb0bcdf2a98d154735788e0ea34f434f09588644a42d79f6db4054bd054
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1dd4fa2f0d4ae18a4b2ae0bea8448e67304f7d94e65d837c15a25a6f19df60aadcb3da568ee757573537621ef2ca512deaba6a79d11087f020d66575b74aeed2
|
7
|
+
data.tar.gz: 4ae5d901c8c714b108221860cf922882d791e1bfb85c2913487fbf48814ac767d447092c6304e775774c8c1e94f09af33d26bbab41ff7a330dcd60c8e5231c7d
|
@@ -27,8 +27,8 @@ along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>
|
|
27
27
|
<%= checkbox_f f, :dhcp6, :label => _('DHCP IPv6') %>
|
28
28
|
<%= text_f f, :cidr6, :label => _('CIDR IPv6'), :label_size => "col-md-2", :label_help => _("integer within [0..128]")%>
|
29
29
|
<%= text_f f, :gw6, :label => _('Gateway IPv6'), :label_size => "col-md-2" %>
|
30
|
-
<%=
|
31
|
-
<%=
|
30
|
+
<%= text_f f, :tag, :class => "input-mini", :label => _('VLAN tag'), :label_size => "col-md-2" %>
|
31
|
+
<%= text_f f, :rate, :class => "input-mini", :label => _('Rate limit'), :label_size => "col-md-2" %>
|
32
32
|
<%= checkbox_f f, :firewall, :label => _('Firewall') %>
|
33
33
|
<%= select_f f, :bridge, compute_resource.bridges(node_id), :iface, :iface, { }, :label => _('Bridge'), :label_size => "col-md-2" %>
|
34
34
|
<% end %>
|
@@ -22,9 +22,9 @@ along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>
|
|
22
22
|
<%= text_f f, :id, :label => _('Identifier'), :label_size => "col-md-2", :required => true, :label_help => _("net[n] with n integer >= 0, e.g. net0") %>
|
23
23
|
<%= select_f f, :model, proxmox_networkcards_map, :id, :name, { }, :label => _('Card'), :label_size => "col-md-2" %>
|
24
24
|
<%= select_f f, :bridge, compute_resource.bridges(node_id), :iface, :iface, { }, :label => _('Bridge'), :label_size => "col-md-2" %>
|
25
|
-
<%=
|
26
|
-
<%=
|
27
|
-
<%=
|
25
|
+
<%= text_f f, :tag, :class => "input-mini", :label => _('VLAN tag'), :label_size => "col-md-2" %>
|
26
|
+
<%= text_f f, :rate, :class => "input-mini", :label => _('Rate limit'), :label_size => "col-md-2" %>
|
27
|
+
<%= text_f f, :queues, :class => "input-mini", :label => _('Multiqueue'), :label_size => "col-md-2" %>
|
28
28
|
<%= checkbox_f f, :firewall, { :label => _('Firewall') }, '1', '0' %>
|
29
29
|
<%= checkbox_f f, :link_down, { :label => _('Disconnect') }, '1', '0' %>
|
30
30
|
<% end %>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_fog_proxmox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tristan Robert
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-12-
|
12
|
+
date: 2022-12-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: deface
|
@@ -262,29 +262,29 @@ signing_key:
|
|
262
262
|
specification_version: 4
|
263
263
|
summary: Foreman plugin that adds Proxmox VE compute resource using fog-proxmox
|
264
264
|
test_files:
|
265
|
-
- test/
|
265
|
+
- test/test_plugin_helper.rb
|
266
266
|
- test/factories/foreman_fog_proxmox/proxmox_node_mock_factory.rb
|
267
|
-
- test/factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb
|
268
267
|
- test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb
|
268
|
+
- test/factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb
|
269
269
|
- test/factories/proxmox_factory.rb
|
270
|
-
- test/unit/foreman_fog_proxmox/
|
271
|
-
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_cloudinit_test.rb
|
272
|
-
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_hard_disk_test.rb
|
273
|
-
- test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb
|
274
|
-
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb
|
270
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb
|
275
271
|
- test/unit/foreman_fog_proxmox/helpers/proxmox_vm_volumes_helper_test.rb
|
276
|
-
- test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb
|
277
|
-
- test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
|
278
272
|
- test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb
|
273
|
+
- test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb
|
279
274
|
- test/unit/foreman_fog_proxmox/helpers/proxmox_vm_uuid_helper_test.rb
|
275
|
+
- test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
|
280
276
|
- test/unit/foreman_fog_proxmox/proxmox_version_test.rb
|
281
|
-
- test/unit/foreman_fog_proxmox/
|
282
|
-
- test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb
|
277
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_cdrom_test.rb
|
283
278
|
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb
|
279
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_test.rb
|
284
280
|
- test/unit/foreman_fog_proxmox/semver_test.rb
|
285
|
-
- test/unit/foreman_fog_proxmox/
|
281
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_hard_disk_test.rb
|
286
282
|
- test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb
|
283
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb
|
284
|
+
- test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb
|
287
285
|
- test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb
|
288
|
-
- test/unit/foreman_fog_proxmox/
|
286
|
+
- test/unit/foreman_fog_proxmox/proxmox_images_test.rb
|
287
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_cloudinit_test.rb
|
289
288
|
- test/unit/foreman_fog_proxmox/proxmox_test.rb
|
290
|
-
- test/
|
289
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb
|
290
|
+
- test/functional/compute_resources_controller_test.rb
|