-
Notifications
You must be signed in to change notification settings - Fork 8
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
add custom packages for Full VM && Micro VM #677
Conversation
Full VM |
packages/playground/src/components/select_solution_flavor_ssd.vue
Outdated
Show resolved
Hide resolved
please resolve the conflicts |
the workflows are failing, can you check? |
minimum: { type: Object as Package, default: () => ({ cpu: 1, memory: 1024 * 2, ssd: 15 }) }, | ||
standard: { type: Object as Package, default: () => ({ cpu: 2, memory: 1024 * 2, ssd: 100 }) }, |
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.
minimum: { type: Object as Package, default: () => ({ cpu: 1, memory: 1024 * 2, ssd: 15 }) }, | |
standard: { type: Object as Package, default: () => ({ cpu: 2, memory: 1024 * 2, ssd: 100 }) }, | |
minimum: { type: Object as Package, default: () => ({ cpu: 1, memory: 1024 * 2, disk: 15 }) }, | |
standard: { type: Object as Package, default: () => ({ cpu: 2, memory: 1024 * 2, disk: 100 }) }, |
Why did we update disk
to ssd
here?
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.
It was thabet's request. @xmonader
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.
it can be internally defined as disk, but to the user it should be shown as SSD Storage or SSD Disk
recommended: { | ||
type: Object as Package, | ||
default: () => ({ cpu: 4, memory: 1024 * 4, disk: 250 }), | ||
default: () => ({ cpu: 4, memory: 1024 * 4, ssd: 250 }), |
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.
default: () => ({ cpu: 4, memory: 1024 * 4, ssd: 250 }), | |
default: () => ({ cpu: 4, memory: 1024 * 4, disk: 250 }), |
Same here
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.
the filters do not update with the package values
Screencast.from.20.2023.EEST.01.17.15.webm
:cpu="cpu" | ||
:memory="memory" | ||
:cpu="solution?.cpu" | ||
:memory="solution?.memory" | ||
:disk="disks.reduce((total, disk) => total + disk.size, rootFsSize)" |
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.
* add custom packages for fullvm * remove select_resources component * add micro vm packages * update disk in component to ssd storage * check workflow * fix lint workflow * fix linting * fix disk prop * fix filters update * fix disk issue in micro vm * remove unnecessary value * update disks in machine model * return line removed by mistake * add solution disk to rootfs * remove rootfs * remove rootfs component --------- Co-authored-by: kassem <omarksm09@gmail.com>
No description provided.