Skip to content

Commit 131d3bc

Browse files
authored
Merge pull request #16117 from rancher/gha-portpr-20030068111-1
[backport v2.12.5] Ensure we fetch more than the default 1000 norman users
2 parents dba9bdb + dd39e0f commit 131d3bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

shell/config/product/explorer.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ export function init(store) {
180180
mapGroup(/^(.*\.)?(scc)\.cattle\.io$/, 'SCC');
181181

182182
const dePaginateBindings = configureConditionalDepaginate({ maxResourceCount: 5000 });
183-
const dePaginateNormanBindings = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true }) ;
183+
const dePaginateNormanBindings = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true });
184+
const dePaginateNormanUsers = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true });
184185

185186
configureType(NODE, { isCreatable: false, isEditable: true });
186187
configureType(WORKLOAD_TYPES.JOB, { isEditable: false, match: WORKLOAD_TYPES.JOB });
@@ -189,6 +190,7 @@ export function init(store) {
189190
configureType(MANAGEMENT.PROJECT, { displayName: store.getters['i18n/t']('namespace.project.label') });
190191
configureType(NORMAN.CLUSTER_ROLE_TEMPLATE_BINDING, { depaginate: dePaginateNormanBindings });
191192
configureType(NORMAN.PROJECT_ROLE_TEMPLATE_BINDING, { depaginate: dePaginateNormanBindings });
193+
configureType(NORMAN.USER, { depaginate: dePaginateNormanUsers });
192194
configureType(SNAPSHOT, { depaginate: true });
193195

194196
configureType(SECRET, { showListMasthead: false });

0 commit comments

Comments
 (0)