diff --git a/locales/en/plugin__kubevirt-plugin.json b/locales/en/plugin__kubevirt-plugin.json index 32caa4c1e..05827c7d4 100644 --- a/locales/en/plugin__kubevirt-plugin.json +++ b/locales/en/plugin__kubevirt-plugin.json @@ -557,6 +557,7 @@ "GN Series": "GN Series", "gn1": "gn1", "Go to catalog": "Go to catalog", + "Golden image no DataSource": "Golden image no DataSource", "Golden image not up to date": "Golden image not up to date", "GPU devices": "GPU devices", "GPU devices ({{gpusCount}})": "GPU devices ({{gpusCount}})", @@ -942,6 +943,7 @@ "PVC": "PVC", "PVC (auto import)": "PVC (auto import)", "PVC (clone PVC)": "PVC (clone PVC)", + "PVC bound": "PVC bound", "PVC name": "PVC name", "PVC project": "PVC project", "Quick create error": "Quick create error", @@ -1168,6 +1170,7 @@ "Storage used": "Storage used", "Storage with ReadWriteMany": "Storage with ReadWriteMany", "StorageClass": "StorageClass", + "StorageProfiles with smart clone support (CSI/snapshot)": "StorageProfiles with smart clone support (CSI/snapshot)", "StorageProfiles with spec claimPropertySets": "StorageProfiles with spec claimPropertySets", "Store the key in a project secret.": "Store the key in a project secret.", "Succeeded": "Succeeded", diff --git a/src/views/checkups/storage/details/CheckupsStorageDetailsPageSection.tsx b/src/views/checkups/storage/details/CheckupsStorageDetailsPageSection.tsx index f11208940..8f49a38ae 100644 --- a/src/views/checkups/storage/details/CheckupsStorageDetailsPageSection.tsx +++ b/src/views/checkups/storage/details/CheckupsStorageDetailsPageSection.tsx @@ -24,8 +24,10 @@ import { STORAGE_CHECKUP_LIVE_MIGRATION, STORAGE_CHECKUP_TIMEOUT, STORAGE_CHECKUPS_BOOT_GOLDEN_IMAGE, + STORAGE_CHECKUPS_GOLDEN_IMAGE_NO_DATA_SOURCE, STORAGE_CHECKUPS_GOLDEN_IMAGE_NOT_UP_TO_DATE, STORAGE_CHECKUPS_MISSING_VOLUME_SNAP_SHOT, + STORAGE_CHECKUPS_PVC_BOUND, STORAGE_CHECKUPS_STORAGE_WITH_RWX, STORAGE_CHECKUPS_UNSET_EFS_STORAGE_CLASS, STORAGE_CHECKUPS_VM_HOT_PLUG_VOLUME, @@ -33,6 +35,7 @@ import { STORAGE_CHECKUPS_WITH_CLAIM_PROPERTY_SETS, STORAGE_CHECKUPS_WITH_EMPTY_CLAIM_PROPERTY_SETS, STORAGE_CHECKUPS_WITH_NON_RBD_STORAGE_CLASS, + STORAGE_CHECKUPS_WITH_SMART_CLONE, } from '../utils/utils'; type CheckupsStorageDetailsPageSectionProps = { @@ -45,6 +48,7 @@ const CheckupsStorageDetailsPageSection: FC { const { t } = useKubevirtTranslation(); + const none = t('None'); return ( <> @@ -76,35 +80,39 @@ const CheckupsStorageDetailsPageSection: FC ) : ( - t('None') + none ) } descriptionHeader={t('Default storage class')} /> + + +