Skip to content

Commit ea51f4f

Browse files
committed
LandingPage: Add Edge decommission alert (HMS-6156)
This alert will only be shown when the 'immutable' tab has focus.
1 parent a1700a3 commit ea51f4f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/Components/sharedComponents/ImageBuilderHeader.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useState } from 'react';
22

33
import {
4+
Alert,
45
Button,
56
Popover,
67
Text,
@@ -159,6 +160,31 @@ export const ImageBuilderHeader = ({
159160
</>
160161
)}
161162
</Flex>
163+
{!isOnBlueprintsTab && (
164+
<Flex>
165+
<FlexItem>
166+
<Alert
167+
variant="info"
168+
isInline
169+
title={
170+
<>Upcoming decommission of hosted edge management service</>
171+
}
172+
className="pf-v5-u-mt-sm pf-v5-u-mb-sm"
173+
>
174+
<TextContent>
175+
<Text>
176+
As of July 31, 2025, the hosted edge management service,
177+
will no longer be supported. Consequently, pushing image
178+
updates to Immutable (OSTree) systems via the Hybrid Cloud
179+
Console using this service will be discontinued. Customers
180+
are encouraged to explore Red Hat Edge Manager (RHEM) as the
181+
recommended alternative for managing their edge systems.
182+
</Text>
183+
</TextContent>
184+
</Alert>
185+
</FlexItem>
186+
</Flex>
187+
)}
162188
</PageHeader>
163189
</>
164190
);

0 commit comments

Comments
 (0)