foreman_fog_proxmox 0.12.1 → 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/foreman_fog_proxmox/engine.rb +1 -1
- data/lib/foreman_fog_proxmox/version.rb +1 -1
- metadata +18 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a8a1a5346987d31022f1711c5181ed80fe9d4a5e23a1ec44cb3d65f81c98e4d
|
|
4
|
+
data.tar.gz: ead9626148eee34158047668bc15c2a97b83bb6f6779d4478b932af059b808fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acb1466f50ee8c3ec8e6f6b8844ce88e05a1d732960073bd3e8d7b88c61f55a9d69ddde052882f6ded98930128b52a16d909c5d63db3aada9520a51d0fcd907e
|
|
7
|
+
data.tar.gz: d69dd9aaf71ee9e21c5cdf8dc6dc25ced882ab98f8e8064084e3f533dcddb362c9ee85784744dcc4e0ddefe66c7109263f85bf477622e62848bb42bf7a43a65f
|
data/README.md
CHANGED
|
@@ -216,7 +216,7 @@ or just one:
|
|
|
216
216
|
|
|
217
217
|
```shell
|
|
218
218
|
export DISABLE_SPRING=true
|
|
219
|
-
bundle exec bin/rake test TEST
|
|
219
|
+
bundle exec bin/rake test TEST=../foreman_fog_proxmox/test/functional/compute_resources_controller_test.rb DATABASE_URL=nulldb://nohost
|
|
220
220
|
```
|
|
221
221
|
|
|
222
222
|
* Check code syntax with rubocop and foreman rules:
|
|
@@ -45,7 +45,7 @@ module ForemanFogProxmox
|
|
|
45
45
|
# add dashboard widget
|
|
46
46
|
widget 'foreman_fog_proxmox_widget', name: N_('Foreman Fog Proxmox widget'), sizex: 8, sizey: 1
|
|
47
47
|
security_block :foreman_fog_proxmox do
|
|
48
|
-
permission :view_compute_resource, { :
|
|
48
|
+
permission :view_compute_resource, { :"foreman_fog_proxmox/compute_resources" =>
|
|
49
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
50
|
end
|
|
51
51
|
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.12.
|
|
4
|
+
version: 0.12.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: 2020-
|
|
12
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: deface
|
|
@@ -225,25 +225,25 @@ signing_key:
|
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Foreman plugin that adds Proxmox VE compute resource using fog-proxmox
|
|
227
227
|
test_files:
|
|
228
|
+
- test/factories/proxmox_factory.rb
|
|
228
229
|
- test/factories/foreman_fog_proxmox/proxmox_node_mock_factory.rb
|
|
229
|
-
- test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb
|
|
230
230
|
- test/factories/foreman_fog_proxmox/proxmox_container_mock_factory.rb
|
|
231
|
-
- test/factories/
|
|
232
|
-
- test/
|
|
233
|
-
- test/
|
|
234
|
-
- test/unit/foreman_fog_proxmox/
|
|
231
|
+
- test/factories/foreman_fog_proxmox/proxmox_server_mock_factory.rb
|
|
232
|
+
- test/test_plugin_helper.rb
|
|
233
|
+
- test/functional/compute_resources_controller_test.rb
|
|
234
|
+
- test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
|
|
235
|
+
- test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb
|
|
236
|
+
- test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb
|
|
237
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb
|
|
235
238
|
- test/unit/foreman_fog_proxmox/proxmox_version_test.rb
|
|
236
|
-
- test/unit/foreman_fog_proxmox/
|
|
237
|
-
- test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb
|
|
239
|
+
- test/unit/foreman_fog_proxmox/semver_test.rb
|
|
238
240
|
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_test.rb
|
|
239
|
-
- test/unit/foreman_fog_proxmox/
|
|
240
|
-
- test/unit/foreman_fog_proxmox/
|
|
241
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_container_test.rb
|
|
242
|
+
- test/unit/foreman_fog_proxmox/proxmox_test.rb
|
|
243
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_create_test.rb
|
|
241
244
|
- test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb
|
|
242
245
|
- test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb
|
|
243
|
-
- test/unit/foreman_fog_proxmox/
|
|
244
|
-
- test/unit/foreman_fog_proxmox/
|
|
245
|
-
- test/unit/foreman_fog_proxmox/
|
|
246
|
-
- test/unit/foreman_fog_proxmox/
|
|
247
|
-
- test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
|
|
248
|
-
- test/test_plugin_helper.rb
|
|
249
|
-
- test/functional/compute_resources_controller_test.rb
|
|
246
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb
|
|
247
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_server_update_volumes_test.rb
|
|
248
|
+
- test/unit/foreman_fog_proxmox/proxmox_vm_commands_test.rb
|
|
249
|
+
- test/unit/foreman_fog_proxmox/proxmox_images_test.rb
|