We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea8378 commit 6e21e01Copy full SHA for 6e21e01
apps/webapp/app/services/platform.v3.server.ts
@@ -80,7 +80,9 @@ type Machines = typeof machinesFromPlatform;
80
81
const MachineOverrideValues = z.object({
82
cpu: z.number(),
83
+ cpuRequest: z.number().optional(), // Only used for k8s fallback to cpu
84
memory: z.number(),
85
+ memoryRequest: z.number().optional(), // Only used for k8s fallback to memory
86
});
87
type MachineOverrideValues = z.infer<typeof MachineOverrideValues>;
88
0 commit comments