diff --git a/src/config/__tests__/__snapshots__/index.test.js.snap b/src/config/__tests__/__snapshots__/index.test.js.snap index 7f027ff88..7c970616b 100644 --- a/src/config/__tests__/__snapshots__/index.test.js.snap +++ b/src/config/__tests__/__snapshots__/index.test.js.snap @@ -7,6 +7,7 @@ exports[`Configuration should have consistent product configuration: inconsisten exports[`Configuration should have consistent product configuration: products 1`] = ` Array [ "rhel", + "rhosak", "openshiftContainer", "openshiftMetrics", "openshiftDedicated", diff --git a/src/config/index.js b/src/config/index.js index de9c3a731..3b2369cd5 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -2,12 +2,14 @@ import { config as rhel } from './product.rhel'; import { config as openshiftContainer } from './product.openshiftContainer'; import { config as openshiftMetrics } from './product.openshiftMetrics'; import { config as openshiftDedicated } from './product.openshiftDedicated'; +import { config as rhosak } from './product.rhosak'; import { config as satelliteProduct } from './product.satellite'; import rbacConfig from './rbac.json'; import { routes as routesConfig } from './routes'; const productsConfig = { rhel, + rhosak, openshiftContainer, openshiftMetrics, openshiftDedicated,