From 2059375b5f2f363c2818aad9f7e4736712889b3e Mon Sep 17 00:00:00 2001 From: Zhamilya Abikenova Date: Wed, 12 Aug 2026 12:09:05 +0200 Subject: [PATCH 1/2] feat(RHINENG-29493): add Satellite option to Workload fitler --- src/Utilities/SystemsHelpers.js | 1 + src/Utilities/constants.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Utilities/SystemsHelpers.js b/src/Utilities/SystemsHelpers.js index 666762739..bc0e35ba4 100644 --- a/src/Utilities/SystemsHelpers.js +++ b/src/Utilities/SystemsHelpers.js @@ -15,6 +15,7 @@ export const workloadToSystemProfile = (workloads = []) => ({ ...(workloads.includes('intersystems') && { intersystems: true }), ...(workloads.includes('oracle_db') && { oracle_db: true }), ...(workloads.includes('rhel_ai') && { rhel_ai: true }), + ...(workloads.includes('satellite') && { satellite: true }), }); export const buildFilterConfig = (filter, apply) => ({ diff --git a/src/Utilities/constants.js b/src/Utilities/constants.js index f589fb6a1..5a66178d0 100644 --- a/src/Utilities/constants.js +++ b/src/Utilities/constants.js @@ -229,6 +229,7 @@ export const workloadOptions = [ { label: 'Oracle DB', value: 'oracle_db' }, { label: 'RHEL AI', value: 'rhel_ai' }, { label: 'SAP', value: 'sap' }, + { label: 'Satellite', value: 'satellite' }, ]; export const staleSystems = [ From 76f0afbfa2836e37e21acc062db4bfc2b4f7d7d7 Mon Sep 17 00:00:00 2001 From: Kate Zaprazna Date: Thu, 13 Aug 2026 14:17:04 +0200 Subject: [PATCH 2/2] test: add Satellite workload filter to SystemTable test --- src/SmartComponents/Systems/SystemTable.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SmartComponents/Systems/SystemTable.test.js b/src/SmartComponents/Systems/SystemTable.test.js index 7485c0dd4..5b96e2b0c 100644 --- a/src/SmartComponents/Systems/SystemTable.test.js +++ b/src/SmartComponents/Systems/SystemTable.test.js @@ -201,6 +201,7 @@ describe('SystemsTable', () => { { label: 'Oracle DB', value: 'oracle_db' }, { label: 'RHEL AI', value: 'rhel_ai' }, { label: 'SAP', value: 'sap' }, + { label: 'Satellite', value: 'satellite' }, ], onChange: expect.any(Function), placeholder: 'Filter by workload',