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 +4 -4
- data/app/services/foreman_rh_cloud/cloud_request_forwarder.rb +1 -3
- data/lib/foreman_inventory_upload/generators/fact_helpers.rb +1 -1
- data/lib/foreman_inventory_upload/generators/slice.rb +0 -1
- data/lib/foreman_inventory_upload.rb +1 -1
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/lib/insights_cloud/async/insights_resolutions_sync.rb +7 -1
- data/lib/tasks/insights.rake +4 -3
- data/package.json +1 -1
- data/test/unit/services/foreman_rh_cloud/cloud_request_forwarder_test.rb +0 -24
- data/test/unit/slice_generator_test.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ff94b0740c89b0b945f90e7feba658b30341a7f8bb5c1fd2e59cdfc68d05969
|
4
|
+
data.tar.gz: b25c4f29a021b554b425d6d464971aed419e3021736730b696710c10e9804670
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
|
@@ -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 =
|
78
|
+
tags = CGI.escape("satellite/satellite_instance_id=#{Foreman.instance_id}")
|
79
79
|
inventory_base_url + "?tags=#{tags}"
|
80
80
|
end
|
81
81
|
|
@@ -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
|
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)
|
data/lib/tasks/insights.rake
CHANGED
@@ -15,9 +15,10 @@ namespace :rh_cloud_insights do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
cleaner = ForemanRhCloud::InsightsStatusCleaner.new
|
18
|
-
|
19
|
-
|
20
|
-
|
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
@@ -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 '
|
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:
|
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:
|
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:
|
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:
|
40
|
+
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: katello
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|