Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"install:ci": "yarn install --frozen-lockfile",
"dev": "bash -c 'source ./scripts/version && NODE_ENV=dev ./node_modules/.bin/vue-cli-service serve'",
"mem-dev": "bash -c 'source ./scripts/version && NODE_ENV=dev node --max-old-space-size=8192 ./node_modules/.bin/vue-cli-service serve'",
"docker:local:start": "docker run -d --restart=unless-stopped -p 80:80 -p 443:443 -e CATTLE_BOOTSTRAP_PASSWORD=password -e CATTLE_PASSWORD_MIN_LENGTH=3 --name cypress --privileged rancher/rancher:v2.12-head",
"docker:local:start": "docker run -d --restart=unless-stopped -p 80:80 -p 443:443 -e CATTLE_BOOTSTRAP_PASSWORD=password -e CATTLE_PASSWORD_MIN_LENGTH=3 --name cypress --privileged stgregistry.suse.com/rancher/rancher:v2.12-head",
"docker:local:stop": "docker kill cypress || true && docker rm cypress || true",
"docker:local:logs": "docker logs cypress > $E2E_RANCHER_LOG 2>&1",
"build": "NODE_OPTIONS=--max_old_space_size=4096 ./node_modules/.bin/vue-cli-service build",
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e-docker-start
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ docker run -d --restart=unless-stopped -p 80:80 -p 443:443 ${VOLUME_ARGS} \
-e CATTLE_TRACE=true \
--name cypress \
--privileged \
rancher/rancher:${RANCHER_IMG_VERSION} \
stgregistry.suse.com/rancher/rancher:${RANCHER_IMG_VERSION} \
--features=oidc-provider=true

docker ps
Expand Down
4 changes: 3 additions & 1 deletion shell/config/product/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ export function init(store) {
mapGroup(/^(.*\.)?(scc)\.cattle\.io$/, 'SCC');

const dePaginateBindings = configureConditionalDepaginate({ maxResourceCount: 5000 });
const dePaginateNormanBindings = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true }) ;
const dePaginateNormanBindings = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true });
const dePaginateNormanUsers = configureConditionalDepaginate({ maxResourceCount: 5000, isNorman: true });

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

configureType(SECRET, { showListMasthead: false });
Expand Down