cp_oraclecloud 0.1.9 → 0.1.10

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +118 -46
  3. data/app/controllers/cp_oraclecloud/compute_components_controller.rb +8 -8
  4. data/app/controllers/cp_oraclecloud/compute_instances_controller.rb +5 -5
  5. data/app/controllers/cp_oraclecloud/database_components_controller.rb +8 -8
  6. data/app/controllers/cp_oraclecloud/database_instances_controller.rb +11 -11
  7. data/app/controllers/cp_oraclecloud/java_components_controller.rb +8 -8
  8. data/app/controllers/cp_oraclecloud/java_instances_controller.rb +5 -5
  9. data/app/controllers/cp_oraclecloud/soa_components_controller.rb +8 -8
  10. data/app/controllers/cp_oraclecloud/soa_instances_controller.rb +5 -5
  11. data/app/controllers/cp_oraclecloud/ssh_keys_controller.rb +68 -68
  12. data/app/models/cp_oraclecloud/compute_component.rb +44 -44
  13. data/app/models/cp_oraclecloud/compute_instance.rb +55 -55
  14. data/app/models/cp_oraclecloud/database_component.rb +41 -41
  15. data/app/models/cp_oraclecloud/database_instance.rb +55 -55
  16. data/app/models/cp_oraclecloud/java_component.rb +78 -78
  17. data/app/models/cp_oraclecloud/java_instance.rb +55 -55
  18. data/app/models/cp_oraclecloud/soa_component.rb +58 -58
  19. data/app/models/cp_oraclecloud/soa_instance.rb +55 -55
  20. data/app/models/cp_oraclecloud/ssh_key.rb +61 -61
  21. data/app/policies/cp_oraclecloud/compute_component_policy.rb +4 -4
  22. data/app/policies/cp_oraclecloud/compute_instance_policy.rb +4 -4
  23. data/app/policies/cp_oraclecloud/database_component_policy.rb +4 -4
  24. data/app/policies/cp_oraclecloud/database_instance_policy.rb +4 -4
  25. data/app/policies/cp_oraclecloud/java_component_policy.rb +4 -4
  26. data/app/policies/cp_oraclecloud/java_instance_policy.rb +4 -4
  27. data/app/policies/cp_oraclecloud/soa_component_policy.rb +4 -4
  28. data/app/policies/cp_oraclecloud/soa_instance_policy.rb +4 -4
  29. data/app/policies/cp_oraclecloud/ssh_key_policy.rb +25 -25
  30. data/app/views/cp_oraclecloud/compute_components/_fields.html.erb +4 -4
  31. data/app/views/cp_oraclecloud/compute_instances/_show.html.erb +8 -8
  32. data/app/views/cp_oraclecloud/database_components/_fields.html.erb +11 -11
  33. data/app/views/cp_oraclecloud/database_instances/_show.html.erb +112 -112
  34. data/app/views/cp_oraclecloud/java_components/_fields.html.erb +67 -67
  35. data/app/views/cp_oraclecloud/java_instances/_show.html.erb +36 -36
  36. data/app/views/cp_oraclecloud/soa_components/_fields.html.erb +36 -36
  37. data/app/views/cp_oraclecloud/soa_instances/_show.html.erb +8 -8
  38. data/app/views/cp_oraclecloud/ssh_keys/_form.html.erb +8 -8
  39. data/app/views/cp_oraclecloud/ssh_keys/edit.html.erb +3 -3
  40. data/app/views/cp_oraclecloud/ssh_keys/index.html.erb +33 -33
  41. data/app/views/cp_oraclecloud/ssh_keys/new.html.erb +3 -3
  42. data/app/views/products/_cp_oraclecloud_component_menu.html.erb +17 -17
  43. data/config/routes.rb +22 -22
  44. data/lib/cp_oraclecloud.rb +21 -23
  45. data/lib/cp_oraclecloud/compute_mixin.rb +7 -7
  46. data/lib/cp_oraclecloud/database_mixin.rb +26 -26
  47. data/lib/cp_oraclecloud/engine.rb +4 -0
  48. data/lib/cp_oraclecloud/java_mixin.rb +27 -27
  49. data/lib/cp_oraclecloud/soa_mixin.rb +13 -13
  50. data/lib/cp_oraclecloud/version.rb +3 -3
  51. metadata +15 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c78ca804b054bdfb3c01b17f2e4e9794ac264e28
4
- data.tar.gz: c5fba7ace68a7ab0e0f5dde90147051f28b9633c
3
+ metadata.gz: b310e6d45a592f97e412c303511bae7b178facd1
4
+ data.tar.gz: ccb36c2a552cfa869324eb4a56b7921102a1f454
5
5
  SHA512:
6
- metadata.gz: 4fee671dccd5040daff93ceff1bb006691fd9d1c049c94c0d7ffcde74107a8e6aa3178db7f781d36e5213f79421735b12d9435b81856a176c6bb836134b26e75
7
- data.tar.gz: 0ff67df98036aa9a8b8d389b7d7a2005174bcc71ce9282590db60596b0df5f931c8991da182014a6224a5442f6a67ce6ba87fa18c290e7def922f339538b6f57
6
+ metadata.gz: 2066969495e34e905c324bbbab1f95d83476a0fc5a7df6938f85b32eb67fd0151ba6bcf473a91da982ccb5713637d272bf971252ba3a5f447f5486633c94b077
7
+ data.tar.gz: 58ea82f86220bcce15a0a9b586fe3868495eed5bb87a8bb3c87a3a014899d4a9b89518bd240bf1b0c7d78c27b347557c027acfc8edb4f9bb3882ab3f3f7f0c3d
data/README.md CHANGED
@@ -1,46 +1,118 @@
1
- # CP_OracleCloud
2
- Cloud Portal plugin to support the Oracle Cloud Platform.
3
-
4
- ## Usage
5
- This is included by default in the Cloud Portal project. It relies on that project and will not work stand-alone.
6
-
7
- ## Installation
8
- Add this line to your application's Gemfile:
9
-
10
- ```ruby
11
- gem 'cp_oraclecloud'
12
- ```
13
-
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
18
-
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install cp_oraclecloud
22
- ```
23
- Configuration options need to be added to an initliazer in your app. Eg: in config/initializers/cp_oraclecloud.rb
24
-
25
- ```ruby
26
- CpOraclecloud.setup do |config|
27
- config.username = <username>
28
- config.password = <password>
29
- config.domain = <domain>
30
- config.region = <region, remove if using US data centres>
31
- config.compute_api = <compute url>
32
- config.storage_api = <storage url>
33
- config.active_components = ['Database', 'Java', 'SOA']
34
- end
35
- ```
36
- The *active_components* option configures which components can be created in the cloud. Supported options are 'Database', 'Java' and 'SOA'. Remove any services you aren't subscribed to.
37
-
38
- ## Contributing
39
- 1. Fork it ( https://github.com/Joelith/cp_oraclecloud )
40
- 2. Create your feature branch (git checkout -b my-new-feature)
41
- 3. Commit your changes (git commit -am 'Add some feature')
42
- 4. Push to the branch (git push origin my-new-feature)
43
- 5. Create a new Pull Request
44
-
45
- ## License
46
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
1
+ # CP_OracleCloud
2
+ Cloud Portal plugin to support the Oracle Cloud Platform.
3
+
4
+ ## Usage
5
+ This is included by default in the Cloud Portal project. It relies on that project and will not work stand-alone.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'cp_oraclecloud'
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install cp_oraclecloud
22
+ ```
23
+ Configuration options need to be added to an initliazer in your app. Eg: in config/initializers/cp_oraclecloud.rb
24
+
25
+ ```ruby
26
+ CpOraclecloud.setup do |config|
27
+ config.username = <username>
28
+ config.password = <password>
29
+ config.domain = <domain>
30
+ config.region = <region, remove if using US data centres>
31
+ config.compute_api = <compute url>
32
+ config.storage_api = <storage url>
33
+ config.active_components = ['Database', 'Java', 'SOA']
34
+ config.rate_card = YAML.load_file(File.expand_path "<path to rate card yml file", __FILE__)[Rails.env].symbolize_keys!
35
+
36
+ end
37
+ ```
38
+ The *active_components* option configures which components can be created in the cloud. Supported options are 'Database', 'Java' and 'SOA'. Remove any services you aren't subscribed to.
39
+
40
+ The *rate_card* option points to where the rate card YML file is located. Add the following to /config/oraclecloud_rate_card.yml to use the default US pricing for the Oracle Cloud (modify to suit your rate card)
41
+
42
+ ```yml
43
+ ---
44
+ defaults: &defaults
45
+ compute:
46
+ hourly: 0.1
47
+ java:
48
+ general:
49
+ standard:
50
+ monthly: 450
51
+ hourly: 0.75
52
+ enterprise:
53
+ monthly: 1200
54
+ hourly: 2.02
55
+ suite:
56
+ monthly: 2800
57
+ hourly: 4.7
58
+ high:
59
+ standard:
60
+ monthly: 550
61
+ hourly: 0.924
62
+ enterprise:
63
+ monthly: 1300
64
+ hourly: 2.184
65
+ suite:
66
+ monthly: 2900
67
+ hourly: 4.872
68
+ soa:
69
+ full: 5500
70
+ api: 3500
71
+ mft: 4500
72
+ database:
73
+ general:
74
+ standard:
75
+ monthly: 600
76
+ hourly: 1.08
77
+ enterprise:
78
+ monthly: 3000
79
+ hourly: 5.04
80
+ hp:
81
+ monthly: 4000
82
+ hourly: 6.72
83
+ xp:
84
+ monthly: 5000
85
+ hourly: 8.401
86
+ high:
87
+ standard:
88
+ monthly: 700
89
+ hourly: 1.176
90
+ enterprise:
91
+ monthly: 3100
92
+ hourly: 5.208
93
+ hp:
94
+ monthly: 4100
95
+ hourly: 6.888
96
+ xp:
97
+ monthly: 5100
98
+ hourly: 8.569
99
+
100
+ development:
101
+ <<: *defaults
102
+
103
+ test:
104
+ <<: *defaults
105
+
106
+ production:
107
+ <<: *defaults
108
+ ```
109
+
110
+ ## Contributing
111
+ 1. Fork it ( https://github.com/Joelith/cp_oraclecloud )
112
+ 2. Create your feature branch (git checkout -b my-new-feature)
113
+ 3. Commit your changes (git commit -am 'Add some feature')
114
+ 4. Push to the branch (git push origin my-new-feature)
115
+ 5. Create a new Pull Request
116
+
117
+ ## License
118
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,9 +1,9 @@
1
- module CpOraclecloud
2
- class ComputeComponentsController < CloudComponentsController
3
-
4
- private
5
- def component_params
6
- params.require(:cp_oraclecloud_compute_component).permit(:name, :shape, :imagelist, :label, :sshkeys)
7
- end
8
- end
1
+ module CpOraclecloud
2
+ class ComputeComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_compute_component).permit(:name, :shape, :imagelist, :label, :sshkeys)
7
+ end
8
+ end
9
9
  end
@@ -1,5 +1,5 @@
1
- module CpOraclecloud
2
- class ComputeInstancesController < CloudInstancesController
3
-
4
- end
5
- end
1
+ module CpOraclecloud
2
+ class ComputeInstancesController < CloudInstancesController
3
+
4
+ end
5
+ end
@@ -1,9 +1,9 @@
1
- module CpOraclecloud
2
- class DatabaseComponentsController < CloudComponentsController
3
-
4
- private
5
- def component_params
6
- params.require(:cp_oraclecloud_database_component).permit(:service_name, :version, :description, :ssh_key, :shape, :level, :subscription_type, :edition, :backup_destination, :admin_password)
7
- end
8
- end
1
+ module CpOraclecloud
2
+ class DatabaseComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_database_component).permit(:service_name, :version, :description, :ssh_key, :shape, :level, :subscription_type, :edition, :backup_destination, :admin_password)
7
+ end
8
+ end
9
9
  end
@@ -1,11 +1,11 @@
1
- module CpOraclecloud
2
- class DatabaseInstancesController < CloudInstancesController
3
-
4
- def backup
5
- instance = CloudInstance.find(params[:database_instance_id])
6
- instance.fog.backup()
7
- flash[:notice] = "Backup has been requested"
8
- redirect_to request.referrer
9
- end
10
- end
11
- end
1
+ module CpOraclecloud
2
+ class DatabaseInstancesController < CloudInstancesController
3
+
4
+ def backup
5
+ instance = CloudInstance.find(params[:database_instance_id])
6
+ instance.fog.backup()
7
+ flash[:notice] = "Backup has been requested"
8
+ redirect_to request.referrer
9
+ end
10
+ end
11
+ end
@@ -1,9 +1,9 @@
1
- module CpOraclecloud
2
- class JavaComponentsController < CloudComponentsController
3
-
4
- private
5
- def component_params
6
- params.require(:cp_oraclecloud_java_component).permit(:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :cloud_storage_if_missing, :description, :enable_admin_console, :provision_otd, :sample_app_deployment_requested, :subscription_type, :level, :admin_password, :admin_port, :admin_username, :backup_volume_size, :cluster_name, :content_port, :dba_name, :dba_password, :db_service_name, :wls_deployment_channel_port, :domain_mode, :domain_name, :domain_partition_count, :domain_volume_size, :edition, :num_nodes, :ms_initial_heap_mb, :ms_jvm_args, :ms_max_heap_mb, :ms_max_perm_mb, :node_manager_password, :node_manager_port, :node_manager_username, :overwrite_ms_jvm_args, :pdb_name, :secured_admin_port, :secured_content_port, :shape, :ssh_key, :version)
7
- end
8
- end
1
+ module CpOraclecloud
2
+ class JavaComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_java_component).permit(:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :cloud_storage_if_missing, :description, :enable_admin_console, :provision_otd, :sample_app_deployment_requested, :subscription_type, :level, :admin_password, :admin_port, :admin_username, :backup_volume_size, :cluster_name, :content_port, :dba_name, :dba_password, :db_service_name, :wls_deployment_channel_port, :domain_mode, :domain_name, :domain_partition_count, :domain_volume_size, :edition, :num_nodes, :ms_initial_heap_mb, :ms_jvm_args, :ms_max_heap_mb, :ms_max_perm_mb, :node_manager_password, :node_manager_port, :node_manager_username, :overwrite_ms_jvm_args, :pdb_name, :secured_admin_port, :secured_content_port, :shape, :ssh_key, :version)
7
+ end
8
+ end
9
9
  end
@@ -1,5 +1,5 @@
1
- module CpOraclecloud
2
- class JavaInstancesController < CloudInstancesController
3
-
4
- end
5
- end
1
+ module CpOraclecloud
2
+ class JavaInstancesController < CloudInstancesController
3
+
4
+ end
5
+ end
@@ -1,9 +1,9 @@
1
- module CpOraclecloud
2
- class SoaComponentsController < CloudComponentsController
3
-
4
- private
5
- def component_params
6
- params.require(:cp_oraclecloud_soa_component).permit(:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :description, :provision_otd, :subscription_type, :level, :topology, :admin_password, :admin_username, :dba_name, :dba_password, :db_service_name, :num_nodes, :shape, :ssh_key, :version)
7
- end
8
- end
1
+ module CpOraclecloud
2
+ class SoaComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_soa_component).permit(:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :description, :provision_otd, :subscription_type, :level, :topology, :admin_password, :admin_username, :dba_name, :dba_password, :db_service_name, :num_nodes, :shape, :ssh_key, :version)
7
+ end
8
+ end
9
9
  end
@@ -1,5 +1,5 @@
1
- module CpOraclecloud
2
- class SoaInstancesController < CloudInstancesController
3
-
4
- end
5
- end
1
+ module CpOraclecloud
2
+ class SoaInstancesController < CloudInstancesController
3
+
4
+ end
5
+ end
@@ -1,68 +1,68 @@
1
- module CpOraclecloud
2
- class SshKeysController < ApplicationController
3
- before_action :set_ssh_key, only: [:show, :edit, :update, :destroy]
4
-
5
- def index
6
- authorize SshKey
7
- @ssh_keys = policy_scope(SshKey)
8
- end
9
-
10
- def new
11
- authorize SshKey
12
- @ssh_key = CpOraclecloud::SshKey.new
13
- end
14
-
15
- def show
16
- authorize @ssh_key
17
- end
18
-
19
- def create
20
- authorize SshKey
21
- @ssh_key = SshKey.new(ssh_key_params)
22
-
23
- if @ssh_key.save
24
- flash[:notice] = "SSH Key has been created."
25
- redirect_to cp_oraclecloud_ssh_keys_path
26
- else
27
- flash.now[:alert] = "SSH Key has not been created."
28
- render "new"
29
- end
30
- end
31
-
32
- def edit
33
- authorize @ssh_key
34
- end
35
-
36
- def destroy
37
- authorize @ssh_key
38
- @ssh_key.destroy
39
- flash[:notice] = "SSH Key has been deleted."
40
-
41
- redirect_to cp_oraclecloud_ssh_keys_path
42
- end
43
-
44
- def update
45
- authorize @ssh_key
46
- if @ssh_key.update_attributes(ssh_key_params)
47
- flash[:notice] = "SSH Key has been updated."
48
- redirect_to cp_oraclecloud_ssh_keys_path
49
- else
50
- flash.now[:alert] = "SSH Key has not been updated."
51
- render "edit"
52
- end
53
- end
54
-
55
- private
56
-
57
- def set_ssh_key
58
- @project = CpOraclecloud::SshKey.find(params[:name])
59
- rescue ActiveRecord::RecordNotFound
60
- flash[:alert] = "The SSH Key you were looking for could not be found."
61
- redirect_to cp_oraclecloud_ssh_keys_path
62
- end
63
-
64
- def ssh_key_params
65
- params.require(:cp_oraclecloud_ssh_key).permit(:name, :enabled, :key)
66
- end
67
- end
68
- end
1
+ module CpOraclecloud
2
+ class SshKeysController < ApplicationController
3
+ before_action :set_ssh_key, only: [:show, :edit, :update, :destroy]
4
+
5
+ def index
6
+ authorize SshKey
7
+ @ssh_keys = policy_scope(SshKey)
8
+ end
9
+
10
+ def new
11
+ authorize SshKey
12
+ @ssh_key = CpOraclecloud::SshKey.new
13
+ end
14
+
15
+ def show
16
+ authorize @ssh_key
17
+ end
18
+
19
+ def create
20
+ authorize SshKey
21
+ @ssh_key = SshKey.new(ssh_key_params)
22
+
23
+ if @ssh_key.save
24
+ flash[:notice] = "SSH Key has been created."
25
+ redirect_to cp_oraclecloud_ssh_keys_path
26
+ else
27
+ flash.now[:alert] = "SSH Key has not been created."
28
+ render "new"
29
+ end
30
+ end
31
+
32
+ def edit
33
+ authorize @ssh_key
34
+ end
35
+
36
+ def destroy
37
+ authorize @ssh_key
38
+ @ssh_key.destroy
39
+ flash[:notice] = "SSH Key has been deleted."
40
+
41
+ redirect_to cp_oraclecloud_ssh_keys_path
42
+ end
43
+
44
+ def update
45
+ authorize @ssh_key
46
+ if @ssh_key.update_attributes(ssh_key_params)
47
+ flash[:notice] = "SSH Key has been updated."
48
+ redirect_to cp_oraclecloud_ssh_keys_path
49
+ else
50
+ flash.now[:alert] = "SSH Key has not been updated."
51
+ render "edit"
52
+ end
53
+ end
54
+
55
+ private
56
+
57
+ def set_ssh_key
58
+ @project = CpOraclecloud::SshKey.find(params[:name])
59
+ rescue ActiveRecord::RecordNotFound
60
+ flash[:alert] = "The SSH Key you were looking for could not be found."
61
+ redirect_to cp_oraclecloud_ssh_keys_path
62
+ end
63
+
64
+ def ssh_key_params
65
+ params.require(:cp_oraclecloud_ssh_key).permit(:name, :enabled, :key)
66
+ end
67
+ end
68
+ end