-
Notifications
You must be signed in to change notification settings - Fork 47
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
[Metadata: VM Image] Enhance Supported VM ImageInfo #1405
Comments
@powerkimhub 단위 관련하여 개선 의견을 공유 드립니다. 이미 다양한 각도에서 살펴보셨을 것이라 생각되는 단위에 대한 의견입니다. 가볍게 살펴보시길 바랍니다. Background단위에 대한 혼란은 20년이 넘도록 계속되고 있는 것 같습니다..
SuggestionCloud-Barista에서 사이즈 단위 및 값을 맞추고 중심을 잡을 필요가 있어 보여 말씀드리는 의견입니다.
(참고) 사이즈 단위와 값을 표기하는 여러 가지 방법이 활용되고 있었으며, 이 중 몇 가지를 공유드립니다.
type VMSpecInfo struct {
MemMiB string `example:”1024”` // (확인) 단위 MiB, 숫자만 입력, 추후 활용시 상수 값으로 추출 예정
} type VMSpecInfo struct {
MemMB string `example:”1000”` // (확인) 단위 MB, 숫자만 입력, 추후 활용시 상수 값으로 추출 예정
}
type VMSpecInfo struct {
Mem string `example:”1024”` // (확인) 단위 MiB, 숫자만 입력, 추후 활용시 상수 값으로 추출 예정
MemUnit string `example:"MiB"` // 단위를 명시 및 제공
}
type VMSpecInfo struct {
MemB string `example:"1,073,741,824"` // Byte 단위 제공, 사용자가 환산하여 사용
MemMi string `example:”1024”` // (확인) 단위 MB, 숫자만 입력, 추후 활용시 상수 값으로 추출 예정
} References |
@yunkon-kim (@MZC-CSC @ish-hcc @innodreamer )
|
@MZC-CSC @ish-hcc @innodreamer (@yunkon-kim) [주요 CSP의 VM Spec 선택 가이드에서의 단위 표기법 및 Spider 채택 단위]
[추가 사항]
[적용 가이드]
[부록] 주요 CSP들 VM Spec 가이드의 단위 표기 방법 참고[AWS] [Azure] [GCP] [Alibaba]
[Tencent]
[NVIDIA] |
The text was updated successfully, but these errors were encountered: