Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into radjabov
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Nov 4, 2024
2 parents 0bbd880 + f7c8eaa commit 09027b4
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' }}
continue-on-error: true
uses: paambaati/codeclimate-action@v8
uses: paambaati/codeclimate-action@v9
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ class ManageIQ::Providers::IbmCloud::PowerVirtualServers::NetworkManager < Manag
:to => :parent_manager,
:allow_nil => true

class << self
delegate :refresh_ems, :to => ManageIQ::Providers::IbmCloud::PowerVirtualServers::CloudManager
end

def image_name
"ibm_power_vs"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ class ManageIQ::Providers::IbmCloud::PowerVirtualServers::StorageManager < Manag
supports :cloud_volume
supports :cloud_volume_create

class << self
delegate :refresh_ems, :to => ManageIQ::Providers::IbmCloud::PowerVirtualServers::CloudManager
end

def image_name
"ibm_power_vs"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class ManageIQ::Providers::IbmCloud::VPC::NetworkManager < ManageIQ::Providers::
:to => :parent_manager,
:allow_nil => true

class << self
delegate :refresh_ems, :to => ManageIQ::Providers::IbmCloud::VPC::CloudManager
end

def image_name
"ibm_cloud"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ class ManageIQ::Providers::IbmCloud::VPC::StorageManager < ManageIQ::Providers::
supports :cloud_volume
supports :cloud_volume_create

class << self
delegate :refresh_ems, :to => ManageIQ::Providers::IbmCloud::VPC::CloudManager
end

def image_name
"ibm_cloud"
end
Expand Down
8 changes: 8 additions & 0 deletions config/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,19 @@
:ibm_vpc:
:refresh_interval: 15.minutes
:allow_targeted_refresh: true
:ibm_cloud_vpc_network:
:refresh_interval: 0
:ibm_cloud_vpc_storage:
:refresh_interval: 0
:ibm_cloud_object_storage:
:refresh_interval: 15.minutes
:ibm_cloud_power_virtual_servers:
:refresh_interval: 15.minutes
:allow_targeted_refresh: true
:ibm_cloud_power_virtual_servers_network:
:refresh_interval: 0
:ibm_cloud_power_virtual_servers_storage:
:refresh_interval: 0
:iks:
:refresh_interval: 15.minutes
:streaming_refresh: true
Expand Down

0 comments on commit 09027b4

Please sign in to comment.