foreman_rh_cloud 9.0.60 → 10.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fc9fef343039c3d7fb7aca6dc870f356c45ed2a67d40184cea8c4c9a0792b7d
4
- data.tar.gz: 19cb1bbe3ece3cf95fc568d2415aed4eabb215e8bdf609afb2f2b5d0a1229a23
3
+ metadata.gz: 0ff94b0740c89b0b945f90e7feba658b30341a7f8bb5c1fd2e59cdfc68d05969
4
+ data.tar.gz: b25c4f29a021b554b425d6d464971aed419e3021736730b696710c10e9804670
5
5
  SHA512:
6
- metadata.gz: 40bb4d0d7f9f537ccac76103385f6babf23a05ac7acef3c906dc7de3c660e6ebb94e87455021c825472fe701a4cf8abd0125c247344451000256964b67b720ee
7
- data.tar.gz: ab205ff552f4ff1a7e50c50dcf0f32ad5fd36b6ca3f1b05eb95665b5e47e36150187361a3222a14298c6f08e0ddea85af229e1105eb2634ff95735839db6a202
6
+ metadata.gz: 6c4b8398e71971b211bb7eb5a76f3d4acd2a274eb69cd9c6f33c8961e0824c8f9da3a34e7ae72c438ab9ddc5042f9a4e3aee53bf24c5ad07ce617b3bdba83eee
7
+ data.tar.gz: a0f2b3d8d0b1ddf1c0bccd5eeef2c818d8f81bf1a05eaa5e9f0a9bacd70368381d362343f5bc454023b258c238127664f4aaac709fe40feae03ae8b400f80f0c
@@ -50,9 +50,7 @@ module ForemanRhCloud
50
50
 
51
51
  def prepare_forward_params(original_request, branch_id)
52
52
  forward_params = original_request.query_parameters
53
- compliance_request = original_request.path.match?(/compliance\/v2(\/.*)?/)
54
- user_agent = original_request.user_agent.present? && !original_request.user_agent.include?('redhat_access_cfme')
55
- if user_agent && !compliance_request
53
+ if original_request.user_agent && !original_request.user_agent.include?('redhat_access_cfme')
56
54
  forward_params = forward_params.merge(:branch_id => branch_id)
57
55
  end
58
56
 
@@ -6,7 +6,7 @@ module ForemanInventoryUpload
6
6
  extend ActiveSupport::Concern
7
7
 
8
8
  CLOUD_AMAZON = 'aws'
9
- CLOUD_GOOGLE = 'google'
9
+ CLOUD_GOOGLE = 'gcp'
10
10
  CLOUD_AZURE = 'azure'
11
11
  CLOUD_ALIBABA = 'alibaba'
12
12
 
@@ -126,7 +126,6 @@ module ForemanInventoryUpload
126
126
  ) { |v| os_release_value(*v) }
127
127
  @stream.simple_field('os_kernel_version', fact_value(host, 'uname::release'))
128
128
  @stream.simple_field('arch', host.architecture&.name)
129
- @stream.simple_field('subscription_status', host.subscription_status_label)
130
129
  @stream.simple_field('katello_agent_running', false)
131
130
  @stream.simple_field(
132
131
  'infrastructure_type',
@@ -75,7 +75,7 @@ module ForemanInventoryUpload
75
75
  end
76
76
 
77
77
  def self.inventory_export_url
78
- tags = URI.encode("satellite/satellite_instance_id=#{Foreman.instance_id}")
78
+ tags = CGI.escape("satellite/satellite_instance_id=#{Foreman.instance_id}")
79
79
  inventory_base_url + "?tags=#{tags}"
80
80
  end
81
81
 
@@ -1,3 +1,3 @@
1
1
  module ForemanRhCloud
2
- VERSION = '9.0.60'.freeze
2
+ VERSION = '10.0.1'.freeze
3
3
  end
@@ -60,7 +60,13 @@ module InsightsCloud
60
60
 
61
61
  def write_resolutions(response)
62
62
  all_resolutions = response.map do |rule_id, rule_details|
63
- rule_details['resolutions'].map { |resolution| to_resolution_hash(to_rule_id(rule_id), resolution) }
63
+ if rule_details
64
+ rule_details['resolutions'].map { |resolution| to_resolution_hash(to_rule_id(rule_id), resolution) }
65
+ else
66
+ logger.info("Rules response: #{rule_id} #{rule_details}")
67
+ logger.debug("Response: #{response}\n Failed id #{rule_id}")
68
+ []
69
+ end
64
70
  end.flatten
65
71
 
66
72
  InsightsResolution.create(all_resolutions)
@@ -15,9 +15,10 @@ namespace :rh_cloud_insights do
15
15
  end
16
16
 
17
17
  cleaner = ForemanRhCloud::InsightsStatusCleaner.new
18
- deleted_count = cleaner.clean(hosts_search)
19
-
20
- puts "Deleted #{deleted_count} insights statuses"
18
+ User.as_anonymous_admin do
19
+ deleted_count = cleaner.clean(hosts_search)
20
+ puts "Deleted #{deleted_count} insights statuses"
21
+ end
21
22
  end
22
23
 
23
24
  desc "Re-announce all organizations into Sources on RH cloud."
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_rh_cloud",
3
- "version": "9.0.60",
3
+ "version": "10.0.1",
4
4
  "description": "Inventory Upload =============",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -112,30 +112,6 @@ class CloudRequestForwarderTest < ActiveSupport::TestCase
112
112
  assert_equal params.merge(:branch_id => 74), @forwarder.prepare_forward_params(req, 74)
113
113
  end
114
114
 
115
- test 'should NOT add branch id into forwarded params for compliance urls' do
116
- user_agent = { :foo => :bar }
117
- params = { :page => 5, :per_page => 42 }
118
-
119
- uris = [
120
- "/redhat_access/r/insights/platform/compliance/v2/systems/MyUUID/policies",
121
- "/redhat_access/r/insights/platform/compliance/v2/policies/MyUUID",
122
- "/redhat_access/r/insights/platform/compliance/v2/systems/MyUUID",
123
- "/redhat_access/r/insights/platform/compliance/v2/policies",
124
- "/redhat_access/r/insights/platform/compliance/v2/",
125
- ]
126
- uris.each do |uri|
127
- req = ActionDispatch::Request.new(
128
- 'REQUEST_URI' => uri,
129
- 'REQUEST_METHOD' => 'GET',
130
- 'HTTP_USER_AGENT' => user_agent,
131
- 'rack.input' => ::Puma::NullIO.new,
132
- 'action_dispatch.request.query_parameters' => params
133
- )
134
- req.stubs(:path).returns(uri)
135
- refute @forwarder.prepare_forward_params(req, 74).key?(:branch_id), "Branch id should not be added for #{uri}"
136
- end
137
- end
138
-
139
115
  test 'should reuse BranchInfo identifiers for user_agent' do
140
116
  user_agent = { :foo => :bar }
141
117
  params = { :page => 5, :per_page => 42 }
@@ -594,7 +594,7 @@ class SliceGeneratorTest < ActiveSupport::TestCase
594
594
  assert_equal '00000000-0000-0000-0000-000000000000', actual['report_slice_id']
595
595
  assert_not_nil(actual_host = actual['hosts'].first)
596
596
  assert_not_nil(actual_profile = actual_host['system_profile'])
597
- assert_equal 'google', actual_profile['cloud_provider']
597
+ assert_equal 'gcp', actual_profile['cloud_provider']
598
598
  end
599
599
 
600
600
  test 'Identifies Azure cloud provider' do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_rh_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.60
4
+ version: 10.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Red Hat Cloud team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
11
+ date: 2024-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foreman_ansible
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: foreman-tasks
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 9.0.0
33
+ version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 9.0.0
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: katello
43
43
  requirement: !ruby/object:Gem::Requirement