-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from poliva83/master
Version 0.4.3 - 2/12/2016
- Loading branch information
Showing
12 changed files
with
360 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,13 +55,13 @@ machine_options { | |
:template_name => String name of the OpenNebula template to use | ||
:template_id => Integer id of the OpenNebula template to use | ||
:template_options => Hash values to be merged with VM template | ||
:enforce_chef_fqdn => [TrueClass, FalseClass] flag indicating if fqdn names should be used for machine names | ||
:is_shutdown => [TrueClass, FalseClass] call vm.shutodwn instead of vm.stop during :stop action | ||
:shutdown_hard => [TrueClass, FalseClass] flag indicating hard or soft shutdown | ||
:mode => String octed to set permissions to the machine | ||
}, | ||
:sudo => true, | ||
:ssh_username => 'local', | ||
:ssh_gateway => '[email protected]', | ||
:ssh_options => { | ||
Hash containing SSH options as specified by net-ssh gem | ||
please see https://github.com/net-ssh/net-ssh for all options | ||
|
@@ -71,9 +71,15 @@ machine_options { | |
:keys => [ File.open(File.expand_path('~/.ssh/id_rsa_new')).read ] | ||
:keys_only => false, | ||
:forward_agent => true, | ||
:proxy => 'ssh myproxy.net nc %h %p', | ||
:use_agent => true, | ||
:user_known_hosts_file => '/dev/null' | ||
} | ||
:vm_name => [Symbol, String] Change how the machine shows up in OpenNebula UI and CLI tools. | ||
Use :short to rename the machine to the short hostname. | ||
Use a string to rename the machine to an arbitrary name. | ||
Note this does not change the hostname of the machine, it | ||
simply renames the VM in OpenNebula. | ||
:connection_timeout => [Integer] max wait time to establish connection | ||
} | ||
``` | ||
|
@@ -503,24 +509,21 @@ example: | |
|
||
## <a name="authors"></a> Authors | ||
|
||
Created by [Bogdan Buczynski][author] (<bbuczynski@blackberry.com>) | ||
Created by [Bogdan Buczynski](https://github.com/bbuczynski) (<pikus1@gmail.com>) | ||
|
||
## <a name="maintainers"></a> Maintainers | ||
|
||
Maintained by | ||
* [Bogdan Buczynski][author] (<[email protected]>) | ||
* [Philip Oliva][maintainer] (<[email protected]>) | ||
* [Andrew J. Brown][maintainer] (<[email protected]>) | ||
* [Evgeny Yurchenko][maintainer] (<[email protected]>) | ||
* [Andrew J. Brown](https://github.com/andrewjamesbrown) (<[email protected]>) | ||
* [Bogdan Buczynski](https://github.com/bbuczynski) (<[email protected]>) | ||
* [Dongyu 'Gary' Zheng](https://github.com/dongyuzheng) (<[email protected]>) | ||
* [Evgeny Yurchenko](https://github.com/EYurchenko) (<[email protected]>) | ||
* [Phil Oliva](https://github.com/poliva83) (<[email protected]>) | ||
|
||
## <a name="license"></a> License | ||
|
||
Apache 2.0 (see [LICENSE][license]) | ||
|
||
[author]: https://github.com/bbuczynski | ||
[maintainer]: https://github.com/poliva83 | ||
[maintainer]: https://github.com/andrewjamesbrown | ||
[maintainer]: https://github.com/EYurchenko | ||
[issues]: https://github.com/blackberry/chef-provisioning-opennebula/issues | ||
[license]: https://github.com/blackberry/chef-provisioning-opennebula/blob/master/LICENSE | ||
[repo]: https://github.com/blackberry/chef-provisioning-opennebula | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,13 +23,13 @@ Gem::Specification.new do |s| | |
s.extra_rdoc_files = [ 'README.md', 'LICENSE' ] | ||
s.summary = 'Driver for creating OpenNebula instances in Chef Provisioning.' | ||
s.description = s.summary | ||
s.authors = [ 'Andrew J. Brown', 'Bogdan Buczynski', 'Evgeny Yurchenko', 'Phil Oliva' ] | ||
s.email = [ '[email protected]', '[email protected]', '[email protected]', '[email protected]' ] | ||
s.authors = [ 'Andrew J. Brown', 'Bogdan Buczynski', 'Dongyu \'Gary\' Zheng', 'Evgeny Yurchenko', 'Phil Oliva' ] | ||
s.email = [ '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]' ] | ||
s.homepage = 'https://github.com/blackberry/chef-provisioning-opennebula' | ||
|
||
s.add_dependency 'chef' | ||
s.add_dependency 'chef-provisioning', '> 0.15' | ||
s.add_dependency 'opennebula', '~> 4.10', '< 4.14' | ||
s.add_dependency 'opennebula', '~> 4.10', '< 5' | ||
|
||
s.add_development_dependency 'rspec' | ||
s.add_development_dependency 'rake' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.