foreman_rh_cloud 11.0.3 → 11.2.0
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/README.md +2 -2
- data/app/assets/javascripts/foreman_rh_cloud/locale/en/foreman_rh_cloud.js +248 -161
- data/app/assets/javascripts/foreman_rh_cloud/locale/fr/foreman_rh_cloud.js +393 -306
- data/app/assets/javascripts/foreman_rh_cloud/locale/ja/foreman_rh_cloud.js +393 -306
- data/app/assets/javascripts/foreman_rh_cloud/locale/ka/foreman_rh_cloud.js +393 -306
- data/app/assets/javascripts/foreman_rh_cloud/locale/ko/foreman_rh_cloud.js +589 -0
- data/app/assets/javascripts/foreman_rh_cloud/locale/zh_CN/foreman_rh_cloud.js +393 -306
- data/app/controllers/api/v2/advisor_engine/advisor_engine_controller.rb +98 -0
- data/app/controllers/api/v2/rh_cloud/advisor_engine_config_controller.rb +16 -0
- data/app/controllers/insights_cloud/api/machine_telemetries_controller.rb +9 -1
- data/app/models/concerns/rh_cloud_host.rb +5 -0
- data/app/services/foreman_rh_cloud/cloud_connector.rb +1 -1
- data/app/services/foreman_rh_cloud/cloud_request.rb +1 -1
- data/app/services/foreman_rh_cloud/cloud_request_forwarder.rb +4 -2
- data/app/services/foreman_rh_cloud/hits_uploader.rb +50 -0
- data/app/services/foreman_rh_cloud/rules_ingester.rb +61 -0
- data/app/services/foreman_rh_cloud/template_renderer_helper.rb +1 -1
- data/app/views/api/v2/advisor_engine/host_details.json.rabl +9 -0
- data/app/views/api/v2/hosts/insights/base.rabl +5 -0
- data/app/views/api/v2/hosts/insights/insights.rabl +3 -0
- data/config/routes.rb +15 -4
- data/db/migrate/20241217190624_add_unique_index_to_rule_id_and_host_id_in_insights_hits.rb +5 -0
- data/db/migrate/20241220184900_change_sync_insights_recommendations_to_true.rb +5 -0
- data/db/seeds.d/189_add_host_inventory_param.rb +7 -0
- data/lib/foreman_inventory_upload/async/generate_all_reports_job.rb +21 -13
- data/lib/foreman_inventory_upload/async/upload_report_job.rb +2 -2
- data/lib/foreman_inventory_upload/generators/queries.rb +1 -1
- data/lib/foreman_inventory_upload/generators/slice.rb +1 -1
- data/lib/foreman_rh_cloud/engine.rb +24 -5
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/lib/foreman_rh_cloud.rb +21 -31
- data/lib/insights_cloud/async/insights_scheduled_sync.rb +10 -2
- data/lib/insights_cloud.rb +4 -0
- data/lib/inventory_sync/async/inventory_full_sync.rb +0 -10
- data/lib/inventory_sync/async/inventory_scheduled_sync.rb +15 -7
- data/lib/tasks/insights.rake +10 -7
- data/lib/tasks/rh_cloud_inventory.rake +8 -3
- data/locale/Makefile +12 -2
- data/locale/en/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/en/foreman_rh_cloud.po +111 -22
- data/locale/foreman_rh_cloud.pot +217 -96
- data/locale/fr/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/fr/foreman_rh_cloud.po +106 -19
- data/locale/ja/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/ja/foreman_rh_cloud.po +106 -19
- data/locale/ka/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/ka/foreman_rh_cloud.po +106 -19
- data/locale/ko/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/ko/foreman_rh_cloud.po +591 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/zh_CN/foreman_rh_cloud.po +106 -19
- data/package.json +1 -1
- data/test/controllers/insights_cloud/api/advisor_engine_controller_test.rb +48 -0
- data/test/controllers/insights_sync/settings_controller_test.rb +3 -0
- data/test/factories/insights_factories.rb +1 -1
- data/test/jobs/inventory_scheduled_sync_test.rb +10 -0
- data/test/unit/rh_cloud_http_proxy_test.rb +1 -26
- data/test/unit/services/foreman_rh_cloud/cloud_request_forwarder_test.rb +24 -0
- data/test/unit/services/foreman_rh_cloud/hits_uploader_test.rb +131 -0
- data/test/unit/services/foreman_rh_cloud/rules_ingester_test.rb +60 -0
- data/test/unit/slice_generator_test.rb +24 -2
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageTitle.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudConnectorButton/CloudConnectorButton.js +2 -2
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudConnectorButton/__tests__/__snapshots__/CloudConnectorButton.test.js.snap +2 -2
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/PageDescription.js +3 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/__snapshots__/PageDescription.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButton.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabHeader/TabHeader.js +1 -1
- data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +1 -1
- data/webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js +1 -1
- data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettings.js +26 -22
- data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsActions.js +2 -1
- data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTable.js +10 -1
- data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTableConstants.js +8 -1
- data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTableHelpers.js +3 -1
- data/webpack/InsightsCloudSync/Components/RemediationModal/RemediationModal.js +5 -1
- data/webpack/InsightsCloudSync/Components/ToolbarDropdown.js +5 -0
- data/webpack/InsightsCloudSync/InsightsCloudSync.js +1 -2
- data/webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap +1 -1
- data/webpack/InsightsHostDetailsTab/NewHostDetailsTab.js +3 -1
- data/webpack/__mocks__/foremanReact/common/hooks/API/APIHooks.js +3 -0
- data/webpack/common/Hooks/ConfigHooks.js +19 -0
- metadata +23 -8
- data/webpack/InsightsCloudSync/Components/InsightsHeader/InsightsHeader.scss +0 -8
- data/webpack/InsightsCloudSync/Components/InsightsHeader/index.js +0 -16
- data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettings.test.js +0 -18
- data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettings.test.js.snap +0 -15
- data/webpack/InsightsCloudSync/Components/__tests__/InsightsHeader.test.js +0 -10
- data/webpack/InsightsCloudSync/Components/__tests__/__snapshots__/InsightsHeader.test.js.snap +0 -13
@@ -5,7 +5,7 @@ exports[`CloudConnectorButton render no cloud connector 1`] = `
|
|
5
5
|
onClick={[MockFunction]}
|
6
6
|
variant="secondary"
|
7
7
|
>
|
8
|
-
Configure
|
8
|
+
Configure cloud connector
|
9
9
|
</Button>
|
10
10
|
`;
|
11
11
|
|
@@ -51,6 +51,6 @@ exports[`CloudConnectorButton render resolved cloud connector 1`] = `
|
|
51
51
|
onClick={[MockFunction]}
|
52
52
|
variant="secondary"
|
53
53
|
>
|
54
|
-
Reconfigure
|
54
|
+
Reconfigure cloud connector
|
55
55
|
</Button>
|
56
56
|
`;
|
@@ -34,7 +34,9 @@ export const PageDescription = () => (
|
|
34
34
|
'To manually upload the data for a specific organization, select an organization and click {restartButtonName}.'
|
35
35
|
)}
|
36
36
|
values={{
|
37
|
-
restartButtonName:
|
37
|
+
restartButtonName: (
|
38
|
+
<strong>{__('Generate and upload report')}</strong>
|
39
|
+
),
|
38
40
|
}}
|
39
41
|
/>
|
40
42
|
</Text>
|
@@ -6,6 +6,6 @@ export const DOCS_BUTTON_TEXT = __('Documentation');
|
|
6
6
|
|
7
7
|
export const ACTIONS_HISTORY_BUTTON_TEXT = __('Actions history');
|
8
8
|
|
9
|
-
export const SYNC_BUTTON_TEXT = __(' Sync inventory status');
|
9
|
+
export const SYNC_BUTTON_TEXT = __(' Sync all inventory status');
|
10
10
|
|
11
11
|
export const CLOUD_PING_TITLE = __('Connectivity test');
|
@@ -13,7 +13,7 @@ export const getInventoryDocsUrl = () =>
|
|
13
13
|
|
14
14
|
export const getActionsHistoryUrl = () =>
|
15
15
|
foremanUrl(
|
16
|
-
'/foreman_tasks/tasks?search=
|
16
|
+
'/foreman_tasks/tasks?search=label+%3D+ForemanInventoryUpload%3A%3AAsync%3A%3AGenerateReportJob+or+label+%3D+ForemanInventoryUpload%3A%3AAsync%3A%3AGenerateAllReportsJob&page=1'
|
17
17
|
);
|
18
18
|
|
19
19
|
export const isExitCodeLoading = exitCode => {
|
@@ -1,32 +1,36 @@
|
|
1
|
-
import React, {
|
1
|
+
import React, { useEffect } from 'react';
|
2
2
|
import PropTypes from 'prop-types';
|
3
3
|
import { translate as __ } from 'foremanReact/common/I18n';
|
4
4
|
import SwitcherPF4 from '../../../common/Switcher/SwitcherPF4';
|
5
5
|
import './insightsSettings.scss';
|
6
|
+
import { useAdvisorEngineConfig } from '../../../common/Hooks/ConfigHooks';
|
6
7
|
|
7
|
-
|
8
|
-
|
9
|
-
|
8
|
+
const InsightsSettings = ({
|
9
|
+
insightsSyncEnabled,
|
10
|
+
getInsightsSyncSettings,
|
11
|
+
setInsightsSyncEnabled,
|
12
|
+
}) => {
|
13
|
+
const isLocalAdvisorEngine = useAdvisorEngineConfig();
|
14
|
+
useEffect(() => {
|
10
15
|
getInsightsSyncSettings();
|
11
|
-
}
|
16
|
+
}, [getInsightsSyncSettings]);
|
12
17
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
}
|
18
|
+
if (isLocalAdvisorEngine) return null;
|
19
|
+
|
20
|
+
return (
|
21
|
+
<div className="insights_settings">
|
22
|
+
<SwitcherPF4
|
23
|
+
id="insights_sync_switcher"
|
24
|
+
label={__('Sync automatically')}
|
25
|
+
tooltip={__(
|
26
|
+
'Enable automatic synchronization of Insights recommendations from the Red Hat cloud'
|
27
|
+
)}
|
28
|
+
isChecked={insightsSyncEnabled}
|
29
|
+
onChange={() => setInsightsSyncEnabled(!insightsSyncEnabled)}
|
30
|
+
/>
|
31
|
+
</div>
|
32
|
+
);
|
33
|
+
};
|
30
34
|
|
31
35
|
InsightsSettings.propTypes = {
|
32
36
|
insightsSyncEnabled: PropTypes.bool.isRequired,
|
@@ -12,6 +12,7 @@ import TableEmptyState from '../../../common/table/EmptyState';
|
|
12
12
|
import { modifySelectedRows, getSortColumnIndex } from './InsightsTableHelpers';
|
13
13
|
import Pagination from './Pagination';
|
14
14
|
import './table.scss';
|
15
|
+
import { useAdvisorEngineConfig } from '../../../common/Hooks/ConfigHooks';
|
15
16
|
|
16
17
|
const InsightsTable = ({
|
17
18
|
page,
|
@@ -43,9 +44,17 @@ const InsightsTable = ({
|
|
43
44
|
fetchInsights({ page, perPage, query, sortBy, sortOrder });
|
44
45
|
}, [hostname]);
|
45
46
|
|
47
|
+
const isLocalAdvisorEngine = useAdvisorEngineConfig();
|
48
|
+
|
46
49
|
useEffect(() => {
|
47
50
|
setRows(
|
48
|
-
modifySelectedRows(
|
51
|
+
modifySelectedRows(
|
52
|
+
hits,
|
53
|
+
selectedIds,
|
54
|
+
showSelectAllAlert,
|
55
|
+
hideHost,
|
56
|
+
isLocalAdvisorEngine
|
57
|
+
)
|
49
58
|
);
|
50
59
|
|
51
60
|
if (hideHost) setColumns(getColumnsWithoutHostname());
|
@@ -31,10 +31,11 @@ export const hasPlaybookFormatter = ({ title: hasPlaybook }) => ({
|
|
31
31
|
});
|
32
32
|
|
33
33
|
export const actionsFormatter = (props, { rowData = {} }) => {
|
34
|
-
const { recommendationUrl, accessRHUrl } = rowData;
|
34
|
+
const { recommendationUrl, accessRHUrl, isLocalAdvisorEngine } = rowData;
|
35
35
|
const dropdownItems = [];
|
36
36
|
|
37
37
|
recommendationUrl &&
|
38
|
+
!isLocalAdvisorEngine &&
|
38
39
|
dropdownItems.push(
|
39
40
|
<DropdownItem key="recommendation-url">
|
40
41
|
<a href={recommendationUrl} target="_blank" rel="noopener noreferrer">
|
@@ -121,4 +122,10 @@ export const INSIGHTS_SET_SELECT_ALL_ALERT = 'INSIGHTS_SET_SELECT_ALL_ALERT';
|
|
121
122
|
|
122
123
|
export const INSIGHTS_SET_SELECT_ALL = 'INSIGHTS_SET_SELECT_ALL';
|
123
124
|
|
125
|
+
export const ADVISOR_ENGINE_CONFIG_KEY = 'ADVISOR_ENGINE_CONFIG';
|
126
|
+
|
127
|
+
export const ADVISOR_ENGINE_CONFIG_PATH = foremanUrl(
|
128
|
+
'/api/v2/rh_cloud/advisor_engine_config'
|
129
|
+
);
|
130
|
+
|
124
131
|
export const NEW_HOST_PATH = '/new/hosts/';
|
@@ -6,7 +6,8 @@ export const modifySelectedRows = (
|
|
6
6
|
hits,
|
7
7
|
selectedIds,
|
8
8
|
showSelectAllAlert,
|
9
|
-
hideHost
|
9
|
+
hideHost,
|
10
|
+
isLocalAdvisorEngine
|
10
11
|
) => {
|
11
12
|
if (hits.length === 0) return [];
|
12
13
|
|
@@ -34,6 +35,7 @@ export const modifySelectedRows = (
|
|
34
35
|
selected: selectedIds[id] || (disableCheckbox && showSelectAllAlert),
|
35
36
|
recommendationUrl: results_url,
|
36
37
|
accessRHUrl: solution_url,
|
38
|
+
isLocalAdvisorEngine,
|
37
39
|
};
|
38
40
|
}
|
39
41
|
);
|
@@ -74,7 +74,11 @@ const RemediationModal = ({
|
|
74
74
|
<TableHeader />
|
75
75
|
<TableBody />
|
76
76
|
</Table>
|
77
|
-
<TableEmptyState
|
77
|
+
<TableEmptyState
|
78
|
+
status={status}
|
79
|
+
error={error}
|
80
|
+
rowsLength={rows.length}
|
81
|
+
/>
|
78
82
|
</Modal>
|
79
83
|
</React.Fragment>
|
80
84
|
);
|
@@ -4,9 +4,14 @@ import { translate as __ } from 'foremanReact/common/I18n';
|
|
4
4
|
import { Dropdown, DropdownItem, KebabToggle } from '@patternfly/react-core';
|
5
5
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
6
6
|
import { redHatAdvisorSystems } from '../InsightsCloudSyncHelpers';
|
7
|
+
import { useAdvisorEngineConfig } from '../../common/Hooks/ConfigHooks';
|
7
8
|
|
8
9
|
const ToolbarDropdown = ({ onRecommendationSync }) => {
|
9
10
|
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
11
|
+
const isLocalAdvisorEngine = useAdvisorEngineConfig();
|
12
|
+
if (isLocalAdvisorEngine) {
|
13
|
+
return null;
|
14
|
+
}
|
10
15
|
const dropdownItems = [
|
11
16
|
<DropdownItem
|
12
17
|
key="recommendation-manual-sync"
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import PropTypes from 'prop-types';
|
3
3
|
import PageLayout from 'foremanReact/routes/common/PageLayout/PageLayout';
|
4
|
-
import InsightsHeader from './Components/InsightsHeader';
|
5
4
|
import InsightsTable from './Components/InsightsTable';
|
6
5
|
import RemediationModal from './Components/RemediationModal';
|
7
6
|
import {
|
@@ -37,7 +36,7 @@ const InsightsCloudSync = ({ syncInsights, query, fetchInsights }) => {
|
|
37
36
|
header={INSIGHTS_SYNC_PAGE_TITLE}
|
38
37
|
toolbarButtons={toolbarButtons}
|
39
38
|
searchQuery={query}
|
40
|
-
beforeToolbarComponent={
|
39
|
+
beforeToolbarComponent={null}
|
41
40
|
>
|
42
41
|
<InsightsTable />
|
43
42
|
</PageLayout>
|
@@ -21,11 +21,13 @@ import {
|
|
21
21
|
selectHits,
|
22
22
|
} from '../InsightsCloudSync/Components/InsightsTable/InsightsTableSelectors';
|
23
23
|
import { redHatAdvisorSystems } from '../InsightsCloudSync/InsightsCloudSyncHelpers';
|
24
|
+
import { useAdvisorEngineConfig } from '../common/Hooks/ConfigHooks';
|
24
25
|
|
25
26
|
const NewHostDetailsTab = ({ hostName, router }) => {
|
26
27
|
const dispatch = useDispatch();
|
27
28
|
const query = useSelector(selectSearch);
|
28
29
|
const hits = useSelector(selectHits);
|
30
|
+
const isLocalAdvisorEngine = useAdvisorEngineConfig();
|
29
31
|
|
30
32
|
useEffect(() => () => router.replace({ search: null }), [router]);
|
31
33
|
|
@@ -41,7 +43,7 @@ const NewHostDetailsTab = ({ hostName, router }) => {
|
|
41
43
|
</DropdownItem>,
|
42
44
|
];
|
43
45
|
|
44
|
-
if (hits.length) {
|
46
|
+
if (hits.length && !isLocalAdvisorEngine) {
|
45
47
|
const { host_uuid: uuid } = hits[0];
|
46
48
|
dropdownItems.push(
|
47
49
|
<DropdownItem key="insights-advisor-link" ouiaId="insights-advisor-link">
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { useAPI } from 'foremanReact/common/hooks/API/APIHooks';
|
2
|
+
import {
|
3
|
+
ADVISOR_ENGINE_CONFIG_KEY,
|
4
|
+
ADVISOR_ENGINE_CONFIG_PATH,
|
5
|
+
} from '../../InsightsCloudSync/Components/InsightsTable/InsightsTableConstants';
|
6
|
+
|
7
|
+
export const useAdvisorEngineConfig = () => {
|
8
|
+
const { response: advisorEngineConfig } = useAPI(
|
9
|
+
'get',
|
10
|
+
ADVISOR_ENGINE_CONFIG_PATH,
|
11
|
+
{
|
12
|
+
key: ADVISOR_ENGINE_CONFIG_KEY,
|
13
|
+
}
|
14
|
+
);
|
15
|
+
|
16
|
+
// eslint-disable-next-line camelcase
|
17
|
+
const isLocalAdvisorEngine = advisorEngineConfig?.use_local_advisor_engine;
|
18
|
+
return isLocalAdvisorEngine;
|
19
|
+
};
|
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: 11.0
|
4
|
+
version: 11.2.0
|
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: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: foreman_ansible
|
@@ -94,7 +94,10 @@ files:
|
|
94
94
|
- app/assets/javascripts/foreman_rh_cloud/locale/fr/foreman_rh_cloud.js
|
95
95
|
- app/assets/javascripts/foreman_rh_cloud/locale/ja/foreman_rh_cloud.js
|
96
96
|
- app/assets/javascripts/foreman_rh_cloud/locale/ka/foreman_rh_cloud.js
|
97
|
+
- app/assets/javascripts/foreman_rh_cloud/locale/ko/foreman_rh_cloud.js
|
97
98
|
- app/assets/javascripts/foreman_rh_cloud/locale/zh_CN/foreman_rh_cloud.js
|
99
|
+
- app/controllers/api/v2/advisor_engine/advisor_engine_controller.rb
|
100
|
+
- app/controllers/api/v2/rh_cloud/advisor_engine_config_controller.rb
|
98
101
|
- app/controllers/api/v2/rh_cloud/cloud_request_controller.rb
|
99
102
|
- app/controllers/api/v2/rh_cloud/inventory_controller.rb
|
100
103
|
- app/controllers/concerns/insights_cloud/candlepin_cache.rb
|
@@ -134,10 +137,15 @@ files:
|
|
134
137
|
- app/services/foreman_rh_cloud/cloud_request.rb
|
135
138
|
- app/services/foreman_rh_cloud/cloud_request_forwarder.rb
|
136
139
|
- app/services/foreman_rh_cloud/hit_remediations_retriever.rb
|
140
|
+
- app/services/foreman_rh_cloud/hits_uploader.rb
|
137
141
|
- app/services/foreman_rh_cloud/insights_status_cleaner.rb
|
138
142
|
- app/services/foreman_rh_cloud/remediations_retriever.rb
|
143
|
+
- app/services/foreman_rh_cloud/rules_ingester.rb
|
139
144
|
- app/services/foreman_rh_cloud/template_renderer_helper.rb
|
140
145
|
- app/services/foreman_rh_cloud/url_remediations_retriever.rb
|
146
|
+
- app/views/api/v2/advisor_engine/host_details.json.rabl
|
147
|
+
- app/views/api/v2/hosts/insights/base.rabl
|
148
|
+
- app/views/api/v2/hosts/insights/insights.rabl
|
141
149
|
- app/views/hosts/_insights_tab.html.erb
|
142
150
|
- app/views/job_templates/cloud_connector.erb
|
143
151
|
- app/views/job_templates/rh_cloud_download_playbook.erb
|
@@ -162,7 +170,10 @@ files:
|
|
162
170
|
- db/migrate/20220321000001_add_unique_to_insights_rules.foreman_rh_cloud.rb
|
163
171
|
- db/migrate/20221102110254_fix_rh_cloud_settings_category_to_dsl.rb
|
164
172
|
- db/migrate/20230515140211_add_missing_hosts_table.foreman_rh_cloud.rb
|
173
|
+
- db/migrate/20241217190624_add_unique_index_to_rule_id_and_host_id_in_insights_hits.rb
|
174
|
+
- db/migrate/20241220184900_change_sync_insights_recommendations_to_true.rb
|
165
175
|
- db/seeds.d/179_ui_notifications.rb
|
176
|
+
- db/seeds.d/189_add_host_inventory_param.rb
|
166
177
|
- db/seeds.d/50_job_templates.rb
|
167
178
|
- lib/foreman_inventory_upload.rb
|
168
179
|
- lib/foreman_inventory_upload/async/async_helpers.rb
|
@@ -219,10 +230,13 @@ files:
|
|
219
230
|
- locale/ja/foreman_rh_cloud.po
|
220
231
|
- locale/ka/LC_MESSAGES/foreman_rh_cloud.mo
|
221
232
|
- locale/ka/foreman_rh_cloud.po
|
233
|
+
- locale/ko/LC_MESSAGES/foreman_rh_cloud.mo
|
234
|
+
- locale/ko/foreman_rh_cloud.po
|
222
235
|
- locale/zh_CN/LC_MESSAGES/foreman_rh_cloud.mo
|
223
236
|
- locale/zh_CN/foreman_rh_cloud.po
|
224
237
|
- package.json
|
225
238
|
- test/controllers/accounts_controller_test.rb
|
239
|
+
- test/controllers/insights_cloud/api/advisor_engine_controller_test.rb
|
226
240
|
- test/controllers/insights_cloud/api/cloud_request_controller_test.rb
|
227
241
|
- test/controllers/insights_cloud/api/machine_telemetries_controller_test.rb
|
228
242
|
- test/controllers/insights_sync/settings_controller_test.rb
|
@@ -260,7 +274,9 @@ files:
|
|
260
274
|
- test/unit/services/foreman_rh_cloud/cloud_request_forwarder_test.rb
|
261
275
|
- test/unit/services/foreman_rh_cloud/cloud_status_service_test.rb
|
262
276
|
- test/unit/services/foreman_rh_cloud/hit_remediations_retriever_test.rb
|
277
|
+
- test/unit/services/foreman_rh_cloud/hits_uploader_test.rb
|
263
278
|
- test/unit/services/foreman_rh_cloud/insights_status_cleaner_test.rb
|
279
|
+
- test/unit/services/foreman_rh_cloud/rules_ingester_test.rb
|
264
280
|
- test/unit/services/foreman_rh_cloud/template_renderer_helper_test.rb
|
265
281
|
- test/unit/services/foreman_rh_cloud/url_remediations_retriever_test.rb
|
266
282
|
- test/unit/shell_process_job_test.rb
|
@@ -520,18 +536,14 @@ files:
|
|
520
536
|
- webpack/ForemanRhCloudReducers.js
|
521
537
|
- webpack/ForemanRhCloudSelectors.js
|
522
538
|
- webpack/ForemanRhCloudTestHelpers.js
|
523
|
-
- webpack/InsightsCloudSync/Components/InsightsHeader/InsightsHeader.scss
|
524
|
-
- webpack/InsightsCloudSync/Components/InsightsHeader/index.js
|
525
539
|
- webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettings.js
|
526
540
|
- webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsActions.js
|
527
541
|
- webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsConstants.js
|
528
542
|
- webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsReducer.js
|
529
543
|
- webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsSelectors.js
|
530
|
-
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettings.test.js
|
531
544
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsActions.test.js
|
532
545
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsReducer.test.js
|
533
546
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsSelectors.test.js
|
534
|
-
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettings.test.js.snap
|
535
547
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsActions.test.js.snap
|
536
548
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsReducer.test.js.snap
|
537
549
|
- webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsSelectors.test.js.snap
|
@@ -563,8 +575,6 @@ files:
|
|
563
575
|
- webpack/InsightsCloudSync/Components/RemediationModal/Resolutions.js
|
564
576
|
- webpack/InsightsCloudSync/Components/RemediationModal/index.js
|
565
577
|
- webpack/InsightsCloudSync/Components/ToolbarDropdown.js
|
566
|
-
- webpack/InsightsCloudSync/Components/__tests__/InsightsHeader.test.js
|
567
|
-
- webpack/InsightsCloudSync/Components/__tests__/__snapshots__/InsightsHeader.test.js.snap
|
568
578
|
- webpack/InsightsCloudSync/InsightsCloudSync.js
|
569
579
|
- webpack/InsightsCloudSync/InsightsCloudSync.scss
|
570
580
|
- webpack/InsightsCloudSync/InsightsCloudSync.test.js
|
@@ -604,6 +614,7 @@ files:
|
|
604
614
|
- webpack/__mocks__/foremanReact/common/I18n.js
|
605
615
|
- webpack/__mocks__/foremanReact/common/MountingService.js
|
606
616
|
- webpack/__mocks__/foremanReact/common/helpers.js
|
617
|
+
- webpack/__mocks__/foremanReact/common/hooks/API/APIHooks.js
|
607
618
|
- webpack/__mocks__/foremanReact/components/ConfirmModal/index.js
|
608
619
|
- webpack/__mocks__/foremanReact/components/Head.js
|
609
620
|
- webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js
|
@@ -624,6 +635,7 @@ files:
|
|
624
635
|
- webpack/common/ForemanTasks/ForemanTasksActions.js
|
625
636
|
- webpack/common/ForemanTasks/ForemanTasksHelpers.js
|
626
637
|
- webpack/common/ForemanTasks/index.js
|
638
|
+
- webpack/common/Hooks/ConfigHooks.js
|
627
639
|
- webpack/common/Switcher/HelpLabel.js
|
628
640
|
- webpack/common/Switcher/SwitcherPF4.js
|
629
641
|
- webpack/common/Switcher/SwitcherPF4.scss
|
@@ -664,6 +676,7 @@ specification_version: 4
|
|
664
676
|
summary: Summary of ForemanRhCloud.
|
665
677
|
test_files:
|
666
678
|
- test/controllers/accounts_controller_test.rb
|
679
|
+
- test/controllers/insights_cloud/api/advisor_engine_controller_test.rb
|
667
680
|
- test/controllers/insights_cloud/api/cloud_request_controller_test.rb
|
668
681
|
- test/controllers/insights_cloud/api/machine_telemetries_controller_test.rb
|
669
682
|
- test/controllers/insights_sync/settings_controller_test.rb
|
@@ -701,7 +714,9 @@ test_files:
|
|
701
714
|
- test/unit/services/foreman_rh_cloud/cloud_request_forwarder_test.rb
|
702
715
|
- test/unit/services/foreman_rh_cloud/cloud_status_service_test.rb
|
703
716
|
- test/unit/services/foreman_rh_cloud/hit_remediations_retriever_test.rb
|
717
|
+
- test/unit/services/foreman_rh_cloud/hits_uploader_test.rb
|
704
718
|
- test/unit/services/foreman_rh_cloud/insights_status_cleaner_test.rb
|
719
|
+
- test/unit/services/foreman_rh_cloud/rules_ingester_test.rb
|
705
720
|
- test/unit/services/foreman_rh_cloud/template_renderer_helper_test.rb
|
706
721
|
- test/unit/services/foreman_rh_cloud/url_remediations_retriever_test.rb
|
707
722
|
- test/unit/shell_process_job_test.rb
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Text, TextVariants } from '@patternfly/react-core';
|
3
|
-
import { translate as __ } from 'foremanReact/common/I18n';
|
4
|
-
import './InsightsHeader.scss';
|
5
|
-
|
6
|
-
const InsightsHeader = () => (
|
7
|
-
<div className="insights-header">
|
8
|
-
<Text component={TextVariants.p}>
|
9
|
-
{__(
|
10
|
-
'Insights synchronization process is used to provide Insights recommendations output for hosts managed here.'
|
11
|
-
)}
|
12
|
-
</Text>
|
13
|
-
</div>
|
14
|
-
);
|
15
|
-
|
16
|
-
export default InsightsHeader;
|
data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettings.test.js
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
2
|
-
import { noop } from 'foremanReact/common/helpers';
|
3
|
-
|
4
|
-
import InsightsSettings from '../InsightsSettings';
|
5
|
-
|
6
|
-
const fixtures = {
|
7
|
-
'render without Props': {
|
8
|
-
insightsSyncEnabled: false,
|
9
|
-
getInsightsSyncSettings: noop,
|
10
|
-
setInsightsSyncEnabled: noop,
|
11
|
-
},
|
12
|
-
/** fixtures, props for the component */
|
13
|
-
};
|
14
|
-
|
15
|
-
describe('InsightsSettings', () => {
|
16
|
-
describe('rendering', () =>
|
17
|
-
testComponentSnapshotsWithFixtures(InsightsSettings, fixtures));
|
18
|
-
});
|
@@ -1,15 +0,0 @@
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
-
|
3
|
-
exports[`InsightsSettings rendering render without Props 1`] = `
|
4
|
-
<div
|
5
|
-
className="insights_settings"
|
6
|
-
>
|
7
|
-
<SwitcherPF4
|
8
|
-
id="insights_sync_switcher"
|
9
|
-
isChecked={false}
|
10
|
-
label="Sync automatically"
|
11
|
-
onChange={[Function]}
|
12
|
-
tooltip="Enable automatic synchronization of Insights recommendations from the Red Hat cloud"
|
13
|
-
/>
|
14
|
-
</div>
|
15
|
-
`;
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
2
|
-
|
3
|
-
import InsightsHeader from '../InsightsHeader';
|
4
|
-
|
5
|
-
const fixtures = {
|
6
|
-
render: {},
|
7
|
-
};
|
8
|
-
|
9
|
-
describe('InsightsHeader', () =>
|
10
|
-
testComponentSnapshotsWithFixtures(InsightsHeader, fixtures));
|
data/webpack/InsightsCloudSync/Components/__tests__/__snapshots__/InsightsHeader.test.js.snap
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
-
|
3
|
-
exports[`InsightsHeader render 1`] = `
|
4
|
-
<div
|
5
|
-
className="insights-header"
|
6
|
-
>
|
7
|
-
<Text
|
8
|
-
component="p"
|
9
|
-
>
|
10
|
-
Insights synchronization process is used to provide Insights recommendations output for hosts managed here.
|
11
|
-
</Text>
|
12
|
-
</div>
|
13
|
-
`;
|