itchy 0.2.0 → 0.2.1
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/bin/itchy +0 -2
- data/config/itchy.yml +3 -10
- data/lib/itchy/image_transformer.rb +2 -2
- data/lib/itchy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea24e9dd7f4ede2cb663e1175290465c3867ce2d
|
|
4
|
+
data.tar.gz: d44ecfb85d3abc31bd5893a14d43cde398030f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f4c8f66d5e42a87ec4956aba8fdd641745966bc3cc44cfbe0c4d1155ea71e5821490986db9dfe445b52ed3d99fce790ab40d1a4b7899d728f364e01f07b937a
|
|
7
|
+
data.tar.gz: b591190a9cab93a41936eb3e7a762703a6fb02bb7429a85560b5b8114886f25bd26c75c6d4130df4359f30916d810ad8f2f3e0d77f494166f522ed281447ece6
|
data/bin/itchy
CHANGED
|
@@ -79,8 +79,6 @@ class ItchyRunnable < Thor
|
|
|
79
79
|
aliases: '-o', desc: 'Path to a directory where processed events descriptors will be stored'
|
|
80
80
|
method_option :descriptor_dir, type: :string, default: Itchy::Settings.descriptor_dir,
|
|
81
81
|
aliases: '-e', desc: 'Path to a directory where appliance descriptors will be stored'
|
|
82
|
-
method_option :input_image_formats, type: :array, default: Itchy::Settings.input_image_formats,
|
|
83
|
-
aliases: '-i', desc: 'Known input image formats'
|
|
84
82
|
method_option *shared_option_log_to
|
|
85
83
|
method_option *shared_option_log_level
|
|
86
84
|
method_option *shared_option_debug
|
data/config/itchy.yml
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
defaults: &defaults
|
|
3
|
-
metadata_dir: /var/spool/
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
descriptor_dir: /vmcatcher/descriptors
|
|
3
|
+
metadata_dir: /var/spool/itchy/metadata
|
|
4
|
+
output_dir: /var/spool/itchy/output
|
|
5
|
+
descriptor_dir: var/spool/itchy/descriptors
|
|
7
6
|
log_to: stderr
|
|
8
7
|
log_level: error
|
|
9
|
-
ca_path: /etc/grid-security/certificates
|
|
10
|
-
ca_file:
|
|
11
8
|
debug: false
|
|
12
|
-
skip_ca_check: false
|
|
13
|
-
input_image_formats:
|
|
14
|
-
- raw
|
|
15
|
-
- ova
|
|
16
9
|
output_image_format: qcow2
|
|
17
10
|
qemu_img_binary: /usr/bin/qemu-img
|
|
18
11
|
|
|
@@ -18,8 +18,8 @@ module Itchy
|
|
|
18
18
|
@options = options
|
|
19
19
|
@inputs = ([] << KNOWN_IMAGE_FORMATS << KNOWN_IMAGE_ARCHIVES).flatten
|
|
20
20
|
|
|
21
|
-
fail ArgumentError, 'Unsupported input image format enabled in configuration! ' \
|
|
22
|
-
|
|
21
|
+
#fail ArgumentError, 'Unsupported input image format enabled in configuration! ' \
|
|
22
|
+
# "#{@inputs.inspect}" unless (@options.input_image_formats - @inputs).empty?
|
|
23
23
|
# fail "Unsupported output image format enabled in configuration! " \
|
|
24
24
|
# "#{KNOWN_IMAGE_FORMATS.inspect}" unless (@options.required_format - KNOWN_IMAGE_FORMATS).empty?
|
|
25
25
|
end
|
data/lib/itchy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itchy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lubomir Kosaristan
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-01-
|
|
12
|
+
date: 2016-01-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: opennebula
|