-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(FR-360): add max_pending_session_count
, max_concurrent_sftp_sessions
to keypair resource policy.
#3025
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,8 +1,9 @@ | ||||||||||||||||||||
import { localeCompare, numberSorterWithInfinityValue } from '../helper'; | ||||||||||||||||||||
import { | ||||||||||||||||||||
UNLIMITED_MAX_CONCURRENT_SESSIONS, | ||||||||||||||||||||
UNLIMITED_MAX_CONTAINERS_PER_SESSIONS, | ||||||||||||||||||||
} from '../helper/const-vars'; | ||||||||||||||||||||
localeCompare, | ||||||||||||||||||||
numberSorterWithInfinityValue, | ||||||||||||||||||||
filterEmptyItem, | ||||||||||||||||||||
} from '../helper'; | ||||||||||||||||||||
import { SIGNED_32BIT_MAX_INT } from '../helper/const-vars'; | ||||||||||||||||||||
import { exportCSVWithFormattingRules } from '../helper/csv-util'; | ||||||||||||||||||||
import { useSuspendedBackendaiClient, useUpdatableState } from '../hooks'; | ||||||||||||||||||||
import { useHiddenColumnKeysSetting } from '../hooks/useHiddenColumnKeysSetting'; | ||||||||||||||||||||
|
@@ -67,8 +68,6 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
useState<KeypairResourcePolicySettingModalFragment$key | null>(); | ||||||||||||||||||||
|
||||||||||||||||||||
const baiClient = useSuspendedBackendaiClient(); | ||||||||||||||||||||
const enableParsingStoragePermission = | ||||||||||||||||||||
baiClient?.supports('fine-grained-storage-permissions') ?? false; | ||||||||||||||||||||
|
||||||||||||||||||||
const { keypair_resource_policies } = | ||||||||||||||||||||
useLazyLoadQuery<KeypairResourcePolicyListQuery>( | ||||||||||||||||||||
|
@@ -82,6 +81,8 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
max_containers_per_session | ||||||||||||||||||||
idle_timeout | ||||||||||||||||||||
allowed_vfolder_hosts | ||||||||||||||||||||
max_pending_session_count @since(version: "24.03.4") | ||||||||||||||||||||
max_concurrent_sftp_sessions @since(version: "24.03.4") | ||||||||||||||||||||
...KeypairResourcePolicySettingModalFragment | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This also looks to be 23.03.3 in the schema. backend.ai-webui/react/data/schema.graphql Lines 980 to 988 in a48214d
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please refer lablup/backend.ai#3413 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll leave comment. It occurs error when testing in 23.03.3 |
||||||||||||||||||||
} | ||||||||||||||||||||
} | ||||||||||||||||||||
|
@@ -106,7 +107,7 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
} | ||||||||||||||||||||
`); | ||||||||||||||||||||
|
||||||||||||||||||||
const columns: ColumnsType<KeypairResourcePolicies> = [ | ||||||||||||||||||||
const columns: ColumnsType<KeypairResourcePolicies> = filterEmptyItem([ | ||||||||||||||||||||
{ | ||||||||||||||||||||
title: t('resourcePolicy.Name'), | ||||||||||||||||||||
dataIndex: 'name', | ||||||||||||||||||||
|
@@ -146,8 +147,7 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
a?.max_concurrent_sessions && b?.max_concurrent_sessions | ||||||||||||||||||||
? a.max_concurrent_sessions - b.max_concurrent_sessions | ||||||||||||||||||||
: 1, | ||||||||||||||||||||
render: (text) => | ||||||||||||||||||||
text === UNLIMITED_MAX_CONCURRENT_SESSIONS ? '∞' : text, | ||||||||||||||||||||
render: (text) => (text ? text : '∞'), | ||||||||||||||||||||
}, | ||||||||||||||||||||
{ | ||||||||||||||||||||
title: t('resourcePolicy.ClusterSize'), | ||||||||||||||||||||
|
@@ -157,8 +157,7 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
a?.max_containers_per_session && b?.max_containers_per_session | ||||||||||||||||||||
? a.max_containers_per_session - b.max_containers_per_session | ||||||||||||||||||||
: 1, | ||||||||||||||||||||
render: (text) => | ||||||||||||||||||||
text === UNLIMITED_MAX_CONTAINERS_PER_SESSIONS ? '∞' : text, | ||||||||||||||||||||
render: (text) => (text === SIGNED_32BIT_MAX_INT ? '∞' : text), | ||||||||||||||||||||
}, | ||||||||||||||||||||
{ | ||||||||||||||||||||
title: t('resourcePolicy.IdleTimeout'), | ||||||||||||||||||||
|
@@ -187,7 +186,9 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
dataIndex: 'allowed_vfolder_hosts', | ||||||||||||||||||||
key: 'allowed_vfolder_hosts', | ||||||||||||||||||||
render: (text, row) => { | ||||||||||||||||||||
const allowedVFolderHosts = enableParsingStoragePermission | ||||||||||||||||||||
const allowedVFolderHosts = baiClient?.supports( | ||||||||||||||||||||
'fine-grained-storage-permissions', | ||||||||||||||||||||
) | ||||||||||||||||||||
? _.keys(JSON.parse(row?.allowed_vfolder_hosts || '{}')) | ||||||||||||||||||||
: JSON.parse(row?.allowed_vfolder_hosts || '{}'); | ||||||||||||||||||||
return ( | ||||||||||||||||||||
|
@@ -199,6 +200,30 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
); | ||||||||||||||||||||
}, | ||||||||||||||||||||
}, | ||||||||||||||||||||
baiClient?.supports('max-pending-session-count') && { | ||||||||||||||||||||
title: t('resourcePolicy.MaxPendingSessionCount'), | ||||||||||||||||||||
dataIndex: 'max_pending_session_count', | ||||||||||||||||||||
key: 'max_pending_session_count', | ||||||||||||||||||||
sorter: (a, b) => | ||||||||||||||||||||
numberSorterWithInfinityValue( | ||||||||||||||||||||
a?.max_pending_session_count, | ||||||||||||||||||||
b?.max_pending_session_count, | ||||||||||||||||||||
0, | ||||||||||||||||||||
), | ||||||||||||||||||||
render: (text) => (text ? text : '∞'), | ||||||||||||||||||||
}, | ||||||||||||||||||||
baiClient?.supports('max-concurrent-sftp-sessions') && { | ||||||||||||||||||||
title: t('resourcePolicy.MaxConcurrentSFTPSessions'), | ||||||||||||||||||||
dataIndex: 'max_concurrent_sftp_sessions', | ||||||||||||||||||||
key: 'max_concurrent_sftp_sessions', | ||||||||||||||||||||
sorter: (a, b) => | ||||||||||||||||||||
numberSorterWithInfinityValue( | ||||||||||||||||||||
a?.max_concurrent_sftp_sessions, | ||||||||||||||||||||
b?.max_concurrent_sftp_sessions, | ||||||||||||||||||||
0, | ||||||||||||||||||||
), | ||||||||||||||||||||
render: (text) => (text ? text : '∞'), | ||||||||||||||||||||
}, | ||||||||||||||||||||
{ | ||||||||||||||||||||
title: t('general.Control'), | ||||||||||||||||||||
key: 'control', | ||||||||||||||||||||
|
@@ -282,7 +307,7 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
</Flex> | ||||||||||||||||||||
), | ||||||||||||||||||||
}, | ||||||||||||||||||||
]; | ||||||||||||||||||||
]); | ||||||||||||||||||||
|
||||||||||||||||||||
const [hiddenColumnKeys, setHiddenColumnKeys] = useHiddenColumnKeysSetting( | ||||||||||||||||||||
'KeypairResourcePolicyList', | ||||||||||||||||||||
|
@@ -311,10 +336,9 @@ const KeypairResourcePolicyList: React.FC<KeypairResourcePolicyListProps> = ( | |||||||||||||||||||
{ | ||||||||||||||||||||
total_resource_slots: (text) => | ||||||||||||||||||||
_.isEmpty(text) ? '-' : JSON.stringify(text), | ||||||||||||||||||||
max_concurrent_sessions: (text) => | ||||||||||||||||||||
text === UNLIMITED_MAX_CONCURRENT_SESSIONS ? '-' : text, | ||||||||||||||||||||
max_concurrent_sessions: (text) => (text ? text : '-'), | ||||||||||||||||||||
max_containers_per_session: (text) => | ||||||||||||||||||||
text === UNLIMITED_MAX_CONTAINERS_PER_SESSIONS ? '-' : text, | ||||||||||||||||||||
text === SIGNED_32BIT_MAX_INT ? '-' : text, | ||||||||||||||||||||
idle_timeout: (text) => (text ? text : '-'), | ||||||||||||||||||||
max_session_lifetime: (text) => (text ? text : '-'), | ||||||||||||||||||||
allowed_vfolder_hosts: (text) => | ||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no. it is okay to revert it.