diff --git a/src/Components/sharedComponents/ImageBuilderHeader.tsx b/src/Components/sharedComponents/ImageBuilderHeader.tsx index 1ab3fed0..f05d904a 100644 --- a/src/Components/sharedComponents/ImageBuilderHeader.tsx +++ b/src/Components/sharedComponents/ImageBuilderHeader.tsx @@ -1,6 +1,7 @@ import React, { useState } from 'react'; import { + Alert, Button, Popover, Text, @@ -21,6 +22,7 @@ import { CREATE_RHEL_IMAGES_WITH_AUTOMATED_MANAGEMENT_URL, CREATING_IMAGES_WITH_IB_SERVICE_URL, OSBUILD_SERVICE_ARCHITECTURE_URL, + RHEM_DOCUMENTATION_URL, } from '../../constants'; import { useBackendPrefetch } from '../../store/backendApi'; import { useAppSelector } from '../../store/hooks'; @@ -159,6 +161,44 @@ export const ImageBuilderHeader = ({ )} + {!isOnBlueprintsTab && ( + + + Upcoming decommission of hosted Edge Management service + } + className="pf-v5-u-mt-sm pf-v5-u-mb-sm" + > + + + As of July 31, 2025, the hosted edge management service will + no longer be supported. This means that pushing image + updates to Immutable (OSTree) systems using the Hybrid Cloud + Console will be discontinued. For an alternative way to + manage edge systems, customers are encouraged to explore Red + Hat Edge Manager (RHEM). + + + + + + + + + )} ); diff --git a/src/constants.ts b/src/constants.ts index 03eb5d0e..7be7b77e 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -35,6 +35,8 @@ export const MANAGING_WITH_DNF_URL = 'https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/managing_software_with_the_dnf_tool/index'; export const CREATING_IMAGES_WITH_IB_SERVICE_URL = 'https://docs.redhat.com/en/documentation/red_hat_insights/1-latest/html/deploying_and_managing_rhel_systems_in_hybrid_clouds/index'; +export const RHEM_DOCUMENTATION_URL = + 'https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/managing_device_fleets_with_the_red_hat_edge_manager/index'; export const OSTREE_URL = 'https://ostreedev.github.io/ostree/'; export const DOCUMENTATION_URL = 'https://docs.redhat.com/en/documentation/red_hat_insights/1-latest/html/deploying_and_managing_rhel_systems_in_hybrid_clouds/index';