Skip to content

Fix missing external system name#2798

Open
TimothyAsirJeyasing wants to merge 1 commit into
red-hat-storage:masterfrom
TimothyAsirJeyasing:bz-5324-external-sysname-notappear-under-ibmscale
Open

Fix missing external system name#2798
TimothyAsirJeyasing wants to merge 1 commit into
red-hat-storage:masterfrom
TimothyAsirJeyasing:bz-5324-external-sysname-notappear-under-ibmscale

Conversation

@TimothyAsirJeyasing
Copy link
Copy Markdown
Contributor

Signed-off-by: Timothy Asir Jeyasingh <tim.gluster@gmail.com>
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 12, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: TimothyAsirJeyasing
Once this PR has been reviewed and has the lgtm label, please assign bipuladh for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link
Copy Markdown
Contributor

@bipuladh bipuladh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please create a different header for Storage Area Network and put it there not under IBM Scale. Please consult UX team also for this bug.

Comment on lines +95 to +112
const getIBMScaleExternalSystemNames = (
remoteClusters: RemoteClusterKind[] = [],
sanClusters: ClusterKind[] = [],
gpfsClusterNameFromDaemon?: string
): string[] => {
const remoteNames = remoteClusters.map((c) => getName(c));
const sanNames = sanClusters.map((c) => {
if (sanClusters.length === 1 && gpfsClusterNameFromDaemon) {
return gpfsClusterNameFromDaemon;
}
const crName = getName(c);
if (sanClusters.length === 1 && crName === IBM_SCALE_LOCAL_CLUSTER_NAME) {
return SAN_STORAGE_SYSTEM_NAME;
}
return crName;
});
return [...remoteNames, ...sanNames];
};
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SAN storage and scale are two different resources. Why are we showing it under the same header?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants