import React, { useState } from 'react'; import { Button, Popover, Content, Flex, Alert } from '@patternfly/react-core'; import { ExternalLinkAltIcon, HelpIcon } from '@patternfly/react-icons'; // eslint-disable-next-line rulesdir/disallow-fec-relative-imports import { OpenSourceBadge, PageHeader, PageHeaderTitle, } from '@redhat-cloud-services/frontend-components'; import { useNavigate } from 'react-router-dom'; 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'; import { selectDistribution } from '../../store/wizardSlice'; import { resolveRelPath } from '../../Utilities/path'; import './ImageBuilderHeader.scss'; import { useFlagWithEphemDefault } from '../../Utilities/useGetEnvironment'; import { ImportBlueprintModal } from '../Blueprints/ImportBlueprintModal'; const AboutImageBuilderPopover = () => { return ( Image builder is a tool for creating deployment-ready customized system images: installation disks, virtual machines, cloud vendor-specific images, and others. By using image builder, you can make these images faster than manual procedures because it eliminates the specific configurations required for each output type. } > {importExportFlag && ( )} )} } /> {!isOnBlueprintsTab && !inWizard && !process.env.IS_ON_PREMISE && ( Upcoming decommission of hosted Edge Management service} className="pf-v6-u-mt-sm pf-v6-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). )} ); };