Skip to content
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

fix: lower gpu node cpu-request to allow scheduling #57

Merged
merged 1 commit into from
Feb 16, 2021
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 frontend/src/app/resource-form/resource-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class ResourceFormComponent implements OnInit, OnDestroy {
this.readonlySpecs = false;
} else {
this.readonlySpecs = true;
this.formCtrl.get("cpu").setValue("5");
this.formCtrl.get("cpu").setValue("4");
this.formCtrl.get("memory").setValue("96Gi");
}
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"optNone": "None",
"lblGpuVendor": "GPU Vendor",
"errorGpuVendorRequired": "You must also specify the GPU Vendor for the assigned GPUs",
"specsWarningMessage": "Selecting 1 GPU will automatically set 5 CPUs and 96Gi of memory."
"specsWarningMessage": "Selecting 1 GPU will automatically set 4 CPUs and 96Gi of memory."
},
"formImage": {
"h3Image": "Image",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"optNone": "Aucun",
"lblGpuVendor": "Vendeur de GPU",
"errorGpuVendorRequired": "Vous devez spécifier le vendeur des GPUs assignés",
"specsWarningMessage": "La sélection de 1 GPU définira automatiquement 5 processeurs et 96Gi de la mémoire."
"specsWarningMessage": "La sélection de 1 GPU définira automatiquement 4 processeurs et 96Gi de la mémoire."

},
"formImage": {
Expand Down