Skip to content

Commit f0871ab

Browse files
authored
Merge pull request #1821 from kubev2v/bp-release-2.9-1972b42
[release-2.9] Add Dell PowerMax to storageMap constants
2 parents 1eaa5fb + f81bf0e commit f0871ab

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

cspell.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Primera
9696
VAAI
9797
operatorhub
9898
powerflex
99+
powermax
99100
apiextensions
100101
customresourcedefinitions
101102
clusterversion

locales/en/plugin__forklift-console-plugin.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@
215215
"Deleting all virtual machines from a migration plan is not allowed.": "Deleting all virtual machines from a migration plan is not allowed.",
216216
"Deleting virtual machines from an archived migration plan is not allowed.": "Deleting virtual machines from an archived migration plan is not allowed.",
217217
"Dell PowerFlex": "Dell PowerFlex",
218+
"Dell PowerMax": "Dell PowerMax",
218219
"Description": "Description",
219220
"Deselect critical issue VMs": "Deselect critical issue VMs",
220221
"destination provider": "destination provider",

src/storageMaps/constants.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ export enum OffloadPlugin {
5050
// Reference: https://github.com/kubev2v/forklift/blob/29b60e21c388420e6e0e79a55802c2c0a201ab45/pkg/apis/forklift/v1beta1/mapping.go
5151
enum StorageVendorProduct {
5252
Ontap = 'ontap',
53-
Powerflex = 'powerflex',
5453
Primera3Par = 'primera3par',
54+
PowerFlex = 'powerflex',
55+
PowerMax = 'powermax',
5556
PureFlashArray = 'pureFlashArray',
5657
Vantara = 'vantara',
5758
}
@@ -62,7 +63,8 @@ export const offloadPluginLabels: Record<OffloadPlugin, ReturnType<typeof t>> =
6263

6364
export const storageVendorProductLabels: Record<StorageVendorProduct, ReturnType<typeof t>> = {
6465
[StorageVendorProduct.Ontap]: t('NetApp ONTAP'),
65-
[StorageVendorProduct.Powerflex]: t('Dell PowerFlex'),
66+
[StorageVendorProduct.PowerFlex]: t('Dell PowerFlex'),
67+
[StorageVendorProduct.PowerMax]: t('Dell PowerMax'),
6668
[StorageVendorProduct.Primera3Par]: t('HPE Primera/3PAR'),
6769
[StorageVendorProduct.PureFlashArray]: t('Pure FlashArray'),
6870
[StorageVendorProduct.Vantara]: t('Hitachi Vantara'),

0 commit comments

Comments
 (0)