foreman_digitalocean 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 769cb63f557bf6c99addc7675ff5c5bbae63a026
|
4
|
+
data.tar.gz: c62d921c45c1f2d4a0a54b8eb126c2ad207bc2db
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d3e70592ad6acef175b7d2f413b2cdb6fa6fd231f141b88837ebd3f89df3c8c2db59d127e6a58280a7204452489449512ab6a7f57d6a0e1ecb1228658ced1a1b
|
7
|
+
data.tar.gz: 868123c33740dcfc8f6e8de46fe59467e35fd9e32c7a62de421a095bf174f3d96047ce904e912f337b6880fe53976ca4767e8718cae9bc867dcab55611d65b34
|
data/README.md
CHANGED
@@ -45,6 +45,14 @@ Then run `bundle install` from the same directory
|
|
45
45
|
|
46
46
|
To verify that the installation was successful, go to Foreman, top bar **Administer > About** and check 'foreman_digitalocean' shows up in the **System Status** menu under the Plugins tab.
|
47
47
|
|
48
|
+
## Compatibility
|
49
|
+
|
50
|
+
|
51
|
+
| Foreman Version | Plugin Version |
|
52
|
+
| --------------- | --------------:|
|
53
|
+
| <= 1.7.x | ~> 0.1.x |
|
54
|
+
| >= 1.8.0 | ~> 0.2.x |
|
55
|
+
|
48
56
|
## Configuration
|
49
57
|
|
50
58
|
Go to **Infrastructure > Compute Resources** and click on "New Compute Resource".
|
data/app/views/compute_resources_vms/form/{_digitalocean.html.erb → digitalocean/_base.html.erb}
RENAMED
File without changes
|
@@ -17,7 +17,7 @@ module ForemanDigitalocean
|
|
17
17
|
|
18
18
|
initializer 'foreman_digitalocean.register_plugin', :after => :finisher_hook do
|
19
19
|
Foreman::Plugin.register :foreman_digitalocean do
|
20
|
-
requires_foreman '
|
20
|
+
requires_foreman '>= 1.8'
|
21
21
|
compute_resource ForemanDigitalocean::Digitalocean
|
22
22
|
end
|
23
23
|
end
|
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_digitalocean
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.2.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Tommy McNeely, Daniel Lobato
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2015-
|
11
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rubocop
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -34,46 +31,45 @@ executables: []
|
|
34
31
|
extensions: []
|
35
32
|
extra_rdoc_files: []
|
36
33
|
files:
|
37
|
-
- app/
|
38
|
-
- app/
|
39
|
-
- app/
|
40
|
-
- app/views/api/v2/compute_resources/digitalocean.json
|
34
|
+
- app/models/concerns/fog_extensions/digitalocean/image.rb
|
35
|
+
- app/models/concerns/fog_extensions/digitalocean/server.rb
|
36
|
+
- app/models/foreman_digitalocean/digitalocean.rb
|
41
37
|
- app/views/api/v1/compute_resources/digitalocean.json
|
38
|
+
- app/views/api/v2/compute_resources/digitalocean.json
|
42
39
|
- app/views/compute_resources/form/_digitalocean.html.erb
|
43
40
|
- app/views/compute_resources/show/_digitalocean.html.erb
|
41
|
+
- app/views/compute_resources_vms/form/digitalocean/_base.html.erb
|
42
|
+
- app/views/compute_resources_vms/index/_digitalocean.html.erb
|
43
|
+
- app/views/compute_resources_vms/show/_digitalocean.html.erb
|
44
44
|
- app/views/images/form/_digitalocean.html.erb
|
45
|
-
- app/models/foreman_digitalocean/digitalocean.rb
|
46
|
-
- app/models/concerns/fog_extensions/digitalocean/server.rb
|
47
|
-
- app/models/concerns/fog_extensions/digitalocean/image.rb
|
48
|
-
- lib/foreman_digitalocean.rb
|
49
|
-
- lib/foreman_digitalocean/version.rb
|
50
45
|
- lib/foreman_digitalocean/engine.rb
|
46
|
+
- lib/foreman_digitalocean/version.rb
|
47
|
+
- lib/foreman_digitalocean.rb
|
51
48
|
- locale/Makefile
|
52
49
|
- LICENSE
|
53
50
|
- README.md
|
54
51
|
homepage: http://github.com/theforeman/foreman-digitalocean
|
55
52
|
licenses:
|
56
53
|
- GPL-3
|
54
|
+
metadata: {}
|
57
55
|
post_install_message:
|
58
56
|
rdoc_options: []
|
59
57
|
require_paths:
|
60
58
|
- lib
|
61
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
-
none: false
|
63
60
|
requirements:
|
64
|
-
- -
|
61
|
+
- - '>='
|
65
62
|
- !ruby/object:Gem::Version
|
66
63
|
version: '0'
|
67
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
-
none: false
|
69
65
|
requirements:
|
70
|
-
- -
|
66
|
+
- - '>='
|
71
67
|
- !ruby/object:Gem::Version
|
72
68
|
version: '0'
|
73
69
|
requirements: []
|
74
70
|
rubyforge_project:
|
75
|
-
rubygems_version:
|
71
|
+
rubygems_version: 2.0.14
|
76
72
|
signing_key:
|
77
|
-
specification_version:
|
73
|
+
specification_version: 4
|
78
74
|
summary: Provision and manage DigitalOcean droplets from Foreman
|
79
75
|
test_files: []
|