├── LICENSE ├── Makefile ├── README.md ├── tab ├── aws ├── azure └── gce ├── tools ├── tab2yaml └── update-yaml └── yaml ├── .yaml ├── aws.yaml ├── azure.yaml └── gce.yaml /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./tools/update-yaml 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Synopsis 2 | 3 | Each public cloud has its own named instance types, with specific resource allocation: at least CPU and Memory, and sometimes more (disk, GPU, pricing, and other attributes). 4 | 5 | This project provides a freely available, well-maintained mapping of instance type names and at least the most common attributes, in several formats (tabular, yaml). 6 | 7 | ## Code Example 8 | 9 | Import the tabular or yaml files into your project, when you need to translate from a cloud's magic word for an instance type, into its attributes. 10 | 11 | ## Motivation 12 | 13 | This project exists in a common location so that a project like LXD, KVM, OpenStack, MAAS, or otherwise easily create containers, virtual machines, or physical machines that rougly map to equivalent instance sizes in Amazon, Azure, Google, or other public clouds. 14 | 15 | For example, you can use LXD to easily create a new container instance whose performance profile matches an AWS m1.large (or any other Amazon instance type): 16 | 17 | ``` 18 | $ lxc launch --type aws:m1.large ubuntu:16.04 19 | 20 | $ lxc launch --type gce:f1-micro images:centos/7 21 | 22 | $ lxc launch --type azure:A5 images:ubuntu/trusty 23 | ``` 24 | 25 | ## Contributors 26 | 27 | Other cloud instance type contributions are welcome. Please create a new tab-delimited file in the tab/ directory. The first column is the instance type's name, the second column is the number of CPUs, and the third column is the memory allocation in GiB. 28 | 29 | ## Information Sources 30 | 31 | * https://aws.amazon.com/ec2/instance-types/ 32 | * https://cloud.google.com/compute/docs/machine-types 33 | * https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs 34 | 35 | ## License 36 | 37 | Copyright 2017 @DustinKirkland 38 | 39 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: 40 | 41 | * http://www.apache.org/licenses/LICENSE-2.0 42 | 43 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 44 | -------------------------------------------------------------------------------- /tab/aws: -------------------------------------------------------------------------------- 1 | c1.medium 2 1.7 2 | c1.xlarge 8 7 3 | c3.2xlarge 8 15 4 | c3.4xlarge 16 30 5 | c3.8xlarge 32 60 6 | c3.large 2 3.75 7 | c3.xlarge 4 7.5 8 | c4.2xlarge 8 15 9 | c4.4xlarge 16 30 10 | c4.8xlarge 36 60 11 | c4.large 2 3.75 12 | c4.xlarge 4 7.5 13 | c5.18xlarge 72 144 14 | c5.2xlarge 8 16 15 | c5.4xlarge 16 32 16 | c5.9xlarge 36 72 17 | c5.large 2 4 18 | c5.xlarge 4 8 19 | cc2.8xlarge 32 60.5 20 | cg1.4xlarge 16 22.5 21 | cr1.8xlarge 32 244 22 | d2.2xlarge 8 61 23 | d2.4xlarge 16 122 24 | d2.8xlarge 36 244 25 | d2.xlarge 4 30.5 26 | f1.16xlarge 64 976 27 | f1.2xlarge 8 122 28 | g2.2xlarge 8 15 29 | g2.8xlarge 32 60 30 | g3.16xlarge 64 488 31 | g3.4xlarge 16 122 32 | g3.8xlarge 32 244 33 | hi1.4xlarge 16 60.5 34 | hs1.8xlarge 16 117 35 | i2.2xlarge 8 61 36 | i2.4xlarge 16 122 37 | i2.8xlarge 32 244 38 | i2.xlarge 4 30.5 39 | i3.16xlarge 64 488 40 | i3.2xlarge 8 61 41 | i3.4xlarge 16 122 42 | i3.8xlarge 32 244 43 | i3.large 2 15.25 44 | i3.xlarge 4 30.5 45 | m1.large 2 7.5 46 | m1.medium 1 3.75 47 | m1.small 1 1.7 48 | m1.xlarge 4 15 49 | m2.2xlarge 4 34.2 50 | m2.4xlarge 8 68.4 51 | m2.xlarge 2 17.1 52 | m3.2xlarge 8 30 53 | m3.large 2 7.5 54 | m3.medium 1 3.75 55 | m3.xlarge 4 15 56 | m4.10xlarge 40 160 57 | m4.16xlarge 64 256 58 | m4.2xlarge 8 32 59 | m4.4xlarge 16 64 60 | m4.large 2 8 61 | m4.xlarge 4 16 62 | p2.16xlarge 64 732 63 | p2.8xlarge 32 488 64 | p2.xlarge 4 61 65 | r3.2xlarge 8 61 66 | r3.4xlarge 16 122 67 | r3.8xlarge 32 244 68 | r3.large 2 15.25 69 | r3.xlarge 4 30.5 70 | r4.16xlarge 64 488 71 | r4.2xlarge 8 61 72 | r4.4xlarge 16 122 73 | r4.8xlarge 32 244 74 | r4.large 2 15.25 75 | r4.xlarge 4 30.5 76 | t1.micro 1 0.613 77 | t2.2xlarge 8 32 78 | t2.large 2 8 79 | t2.medium 2 4 80 | t2.micro 1 1 81 | t2.nano 1 0.5 82 | t2.small 1 2 83 | t2.xlarge 4 16 84 | t3.nano 2 0.5 85 | t3.micro 2 1 86 | t3.small 2 2 87 | t3.medium 2 4 88 | t3.large 2 8 89 | t3.xlarge 4 16 90 | t3.2xlarge 8 32 91 | x1.16xlarge 64 976 92 | x1.32xlarge 128 1952 93 | -------------------------------------------------------------------------------- /tab/azure: -------------------------------------------------------------------------------- 1 | A10 8 56 2 | A11 16 112 3 | A5 2 14 4 | A6 4 28 5 | A7 8 56 6 | A8 8 56 7 | A9 16 112 8 | ExtraLarge 8 14 9 | ExtraSmall 1 0.768 10 | Large 4 7 11 | Medium 2 3.5 GB 12 | Small 1 1.75 13 | Standard_A1_v2 1 2 14 | Standard_A2m_v2 2 16 15 | Standard_A2_v2 2 4 16 | Standard_A4m_v2 4 32 17 | Standard_A4_v2 4 8 18 | Standard_A8m_v2 8 64 19 | Standard_A8_v2 8 16 20 | Standard_D11 2 14 21 | Standard_D1 1 3.5 22 | Standard_D11_v2 2 14 23 | Standard_D12 4 28 24 | Standard_D12_v2 4 28 25 | Standard_D13 8 56 26 | Standard_D13_v2 8 56 27 | Standard_D14 16 112 28 | Standard_D14_v2 16 112 29 | Standard_D15_v2 20 140 30 | Standard_D1_v2 1 3.5 31 | Standard_D2 2 7 32 | Standard_D2_v2 2 7 33 | Standard_D3 4 14 34 | Standard_D3_v2 4 14 35 | Standard_D4 8 28 36 | Standard_D4_v2 8 28 37 | Standard_D5_v2 16 56 38 | Standard_G1 2 28 39 | Standard_G2 4 56 40 | Standard_G3 8 112 41 | Standard_G4 16 224 42 | Standard_G5 32 448 43 | Standard_H16 16 112 44 | Standard_H16m 16 224 45 | Standard_H16mr 16 224 46 | Standard_H16r 16 112 47 | Standard_H8 8 56 48 | Standard_H8m 8 112 49 | -------------------------------------------------------------------------------- /tab/gce: -------------------------------------------------------------------------------- 1 | f1-micro 0.2 0.6 2 | g1-small 0.5 1.7 3 | n1-highcpu-16 16 14.4 4 | n1-highcpu-2 2 1.8 5 | n1-highcpu-32 32 28.8 6 | n1-highcpu-4 4 3.6 7 | n1-highcpu-64 64 57.6 8 | n1-highcpu-8 8 7.2 9 | n1-highmem-16 16 104 10 | n1-highmem-2 2 13 11 | n1-highmem-32 32 208 12 | n1-highmem-4 4 26 13 | n1-highmem-64 64 416 14 | n1-highmem-8 8 52 15 | n1-standard-1 1 3.75 16 | n1-standard-16 16 60 17 | n1-standard-2 2 7.5 18 | n1-standard-32 32 120 19 | n1-standard-4 4 15 20 | n1-standard-64 64 240 21 | n1-standard-8 8 30 22 | -------------------------------------------------------------------------------- /tools/tab2yaml: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import sys 4 | import yaml 5 | 6 | types = {} 7 | 8 | with open(sys.argv[1]) as f: 9 | lines = f.readlines() 10 | f.close() 11 | for l in lines: 12 | c = l.split() 13 | types[c[0]] = {} 14 | types[c[0]]["cpu"] = float(c[1]) 15 | types[c[0]]["mem"] = float(c[2]) 16 | print(yaml.dump(types, default_flow_style=False)) 17 | -------------------------------------------------------------------------------- /tools/update-yaml: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | for i in ./tab/*; do 4 | [ "$(basename $i)" = "." ] && continue 5 | ./tools/tab2yaml $i > ./yaml/$(basename $i).yaml 6 | done 7 | -------------------------------------------------------------------------------- /yaml/.yaml: -------------------------------------------------------------------------------- 1 | aws: "aws.yaml" 2 | gce: "gce.yaml" 3 | azure: "azure.yaml" 4 | -------------------------------------------------------------------------------- /yaml/aws.yaml: -------------------------------------------------------------------------------- 1 | c1.medium: 2 | cpu: 2.0 3 | mem: 1.7 4 | c1.xlarge: 5 | cpu: 8.0 6 | mem: 7.0 7 | c3.2xlarge: 8 | cpu: 8.0 9 | mem: 15.0 10 | c3.4xlarge: 11 | cpu: 16.0 12 | mem: 30.0 13 | c3.8xlarge: 14 | cpu: 32.0 15 | mem: 60.0 16 | c3.large: 17 | cpu: 2.0 18 | mem: 3.75 19 | c3.xlarge: 20 | cpu: 4.0 21 | mem: 7.5 22 | c4.2xlarge: 23 | cpu: 8.0 24 | mem: 15.0 25 | c4.4xlarge: 26 | cpu: 16.0 27 | mem: 30.0 28 | c4.8xlarge: 29 | cpu: 36.0 30 | mem: 60.0 31 | c4.large: 32 | cpu: 2.0 33 | mem: 3.75 34 | c4.xlarge: 35 | cpu: 4.0 36 | mem: 7.5 37 | c5.18xlarge: 38 | cpu: 72.0 39 | mem: 144.0 40 | c5.2xlarge: 41 | cpu: 8.0 42 | mem: 16.0 43 | c5.4xlarge: 44 | cpu: 16.0 45 | mem: 32.0 46 | c5.9xlarge: 47 | cpu: 36.0 48 | mem: 72.0 49 | c5.large: 50 | cpu: 2.0 51 | mem: 4.0 52 | c5.xlarge: 53 | cpu: 4.0 54 | mem: 8.0 55 | cc2.8xlarge: 56 | cpu: 32.0 57 | mem: 60.5 58 | cg1.4xlarge: 59 | cpu: 16.0 60 | mem: 22.5 61 | cr1.8xlarge: 62 | cpu: 32.0 63 | mem: 244.0 64 | d2.2xlarge: 65 | cpu: 8.0 66 | mem: 61.0 67 | d2.4xlarge: 68 | cpu: 16.0 69 | mem: 122.0 70 | d2.8xlarge: 71 | cpu: 36.0 72 | mem: 244.0 73 | d2.xlarge: 74 | cpu: 4.0 75 | mem: 30.5 76 | f1.16xlarge: 77 | cpu: 64.0 78 | mem: 976.0 79 | f1.2xlarge: 80 | cpu: 8.0 81 | mem: 122.0 82 | g2.2xlarge: 83 | cpu: 8.0 84 | mem: 15.0 85 | g2.8xlarge: 86 | cpu: 32.0 87 | mem: 60.0 88 | g3.16xlarge: 89 | cpu: 64.0 90 | mem: 488.0 91 | g3.4xlarge: 92 | cpu: 16.0 93 | mem: 122.0 94 | g3.8xlarge: 95 | cpu: 32.0 96 | mem: 244.0 97 | hi1.4xlarge: 98 | cpu: 16.0 99 | mem: 60.5 100 | hs1.8xlarge: 101 | cpu: 16.0 102 | mem: 117.0 103 | i2.2xlarge: 104 | cpu: 8.0 105 | mem: 61.0 106 | i2.4xlarge: 107 | cpu: 16.0 108 | mem: 122.0 109 | i2.8xlarge: 110 | cpu: 32.0 111 | mem: 244.0 112 | i2.xlarge: 113 | cpu: 4.0 114 | mem: 30.5 115 | i3.16xlarge: 116 | cpu: 64.0 117 | mem: 488.0 118 | i3.2xlarge: 119 | cpu: 8.0 120 | mem: 61.0 121 | i3.4xlarge: 122 | cpu: 16.0 123 | mem: 122.0 124 | i3.8xlarge: 125 | cpu: 32.0 126 | mem: 244.0 127 | i3.large: 128 | cpu: 2.0 129 | mem: 15.25 130 | i3.xlarge: 131 | cpu: 4.0 132 | mem: 30.5 133 | m1.large: 134 | cpu: 2.0 135 | mem: 7.5 136 | m1.medium: 137 | cpu: 1.0 138 | mem: 3.75 139 | m1.small: 140 | cpu: 1.0 141 | mem: 1.7 142 | m1.xlarge: 143 | cpu: 4.0 144 | mem: 15.0 145 | m2.2xlarge: 146 | cpu: 4.0 147 | mem: 34.2 148 | m2.4xlarge: 149 | cpu: 8.0 150 | mem: 68.4 151 | m2.xlarge: 152 | cpu: 2.0 153 | mem: 17.1 154 | m3.2xlarge: 155 | cpu: 8.0 156 | mem: 30.0 157 | m3.large: 158 | cpu: 2.0 159 | mem: 7.5 160 | m3.medium: 161 | cpu: 1.0 162 | mem: 3.75 163 | m3.xlarge: 164 | cpu: 4.0 165 | mem: 15.0 166 | m4.10xlarge: 167 | cpu: 40.0 168 | mem: 160.0 169 | m4.16xlarge: 170 | cpu: 64.0 171 | mem: 256.0 172 | m4.2xlarge: 173 | cpu: 8.0 174 | mem: 32.0 175 | m4.4xlarge: 176 | cpu: 16.0 177 | mem: 64.0 178 | m4.large: 179 | cpu: 2.0 180 | mem: 8.0 181 | m4.xlarge: 182 | cpu: 4.0 183 | mem: 16.0 184 | p2.16xlarge: 185 | cpu: 64.0 186 | mem: 732.0 187 | p2.8xlarge: 188 | cpu: 32.0 189 | mem: 488.0 190 | p2.xlarge: 191 | cpu: 4.0 192 | mem: 61.0 193 | r3.2xlarge: 194 | cpu: 8.0 195 | mem: 61.0 196 | r3.4xlarge: 197 | cpu: 16.0 198 | mem: 122.0 199 | r3.8xlarge: 200 | cpu: 32.0 201 | mem: 244.0 202 | r3.large: 203 | cpu: 2.0 204 | mem: 15.25 205 | r3.xlarge: 206 | cpu: 4.0 207 | mem: 30.5 208 | r4.16xlarge: 209 | cpu: 64.0 210 | mem: 488.0 211 | r4.2xlarge: 212 | cpu: 8.0 213 | mem: 61.0 214 | r4.4xlarge: 215 | cpu: 16.0 216 | mem: 122.0 217 | r4.8xlarge: 218 | cpu: 32.0 219 | mem: 244.0 220 | r4.large: 221 | cpu: 2.0 222 | mem: 15.25 223 | r4.xlarge: 224 | cpu: 4.0 225 | mem: 30.5 226 | t1.micro: 227 | cpu: 1.0 228 | mem: 0.613 229 | t2.2xlarge: 230 | cpu: 8.0 231 | mem: 32.0 232 | t2.large: 233 | cpu: 2.0 234 | mem: 8.0 235 | t2.medium: 236 | cpu: 2.0 237 | mem: 4.0 238 | t2.micro: 239 | cpu: 1.0 240 | mem: 1.0 241 | t2.nano: 242 | cpu: 1.0 243 | mem: 0.5 244 | t2.small: 245 | cpu: 1.0 246 | mem: 2.0 247 | t2.xlarge: 248 | cpu: 4.0 249 | mem: 16.0 250 | t3.2xlarge: 251 | cpu: 8.0 252 | mem: 32.0 253 | t3.large: 254 | cpu: 2.0 255 | mem: 8.0 256 | t3.medium: 257 | cpu: 2.0 258 | mem: 4.0 259 | t3.micro: 260 | cpu: 2.0 261 | mem: 1.0 262 | t3.nano: 263 | cpu: 2.0 264 | mem: 0.5 265 | t3.small: 266 | cpu: 2.0 267 | mem: 2.0 268 | t3.xlarge: 269 | cpu: 4.0 270 | mem: 16.0 271 | x1.16xlarge: 272 | cpu: 64.0 273 | mem: 976.0 274 | x1.32xlarge: 275 | cpu: 128.0 276 | mem: 1952.0 277 | 278 | -------------------------------------------------------------------------------- /yaml/azure.yaml: -------------------------------------------------------------------------------- 1 | A10: 2 | cpu: 8.0 3 | mem: 56.0 4 | A11: 5 | cpu: 16.0 6 | mem: 112.0 7 | A5: 8 | cpu: 2.0 9 | mem: 14.0 10 | A6: 11 | cpu: 4.0 12 | mem: 28.0 13 | A7: 14 | cpu: 8.0 15 | mem: 56.0 16 | A8: 17 | cpu: 8.0 18 | mem: 56.0 19 | A9: 20 | cpu: 16.0 21 | mem: 112.0 22 | ExtraLarge: 23 | cpu: 8.0 24 | mem: 14.0 25 | ExtraSmall: 26 | cpu: 1.0 27 | mem: 0.768 28 | Large: 29 | cpu: 4.0 30 | mem: 7.0 31 | Medium: 32 | cpu: 2.0 33 | mem: 3.5 34 | Small: 35 | cpu: 1.0 36 | mem: 1.75 37 | Standard_A1_v2: 38 | cpu: 1.0 39 | mem: 2.0 40 | Standard_A2_v2: 41 | cpu: 2.0 42 | mem: 4.0 43 | Standard_A2m_v2: 44 | cpu: 2.0 45 | mem: 16.0 46 | Standard_A4_v2: 47 | cpu: 4.0 48 | mem: 8.0 49 | Standard_A4m_v2: 50 | cpu: 4.0 51 | mem: 32.0 52 | Standard_A8_v2: 53 | cpu: 8.0 54 | mem: 16.0 55 | Standard_A8m_v2: 56 | cpu: 8.0 57 | mem: 64.0 58 | Standard_D1: 59 | cpu: 1.0 60 | mem: 3.5 61 | Standard_D11: 62 | cpu: 2.0 63 | mem: 14.0 64 | Standard_D11_v2: 65 | cpu: 2.0 66 | mem: 14.0 67 | Standard_D12: 68 | cpu: 4.0 69 | mem: 28.0 70 | Standard_D12_v2: 71 | cpu: 4.0 72 | mem: 28.0 73 | Standard_D13: 74 | cpu: 8.0 75 | mem: 56.0 76 | Standard_D13_v2: 77 | cpu: 8.0 78 | mem: 56.0 79 | Standard_D14: 80 | cpu: 16.0 81 | mem: 112.0 82 | Standard_D14_v2: 83 | cpu: 16.0 84 | mem: 112.0 85 | Standard_D15_v2: 86 | cpu: 20.0 87 | mem: 140.0 88 | Standard_D1_v2: 89 | cpu: 1.0 90 | mem: 3.5 91 | Standard_D2: 92 | cpu: 2.0 93 | mem: 7.0 94 | Standard_D2_v2: 95 | cpu: 2.0 96 | mem: 7.0 97 | Standard_D3: 98 | cpu: 4.0 99 | mem: 14.0 100 | Standard_D3_v2: 101 | cpu: 4.0 102 | mem: 14.0 103 | Standard_D4: 104 | cpu: 8.0 105 | mem: 28.0 106 | Standard_D4_v2: 107 | cpu: 8.0 108 | mem: 28.0 109 | Standard_D5_v2: 110 | cpu: 16.0 111 | mem: 56.0 112 | Standard_G1: 113 | cpu: 2.0 114 | mem: 28.0 115 | Standard_G2: 116 | cpu: 4.0 117 | mem: 56.0 118 | Standard_G3: 119 | cpu: 8.0 120 | mem: 112.0 121 | Standard_G4: 122 | cpu: 16.0 123 | mem: 224.0 124 | Standard_G5: 125 | cpu: 32.0 126 | mem: 448.0 127 | Standard_H16: 128 | cpu: 16.0 129 | mem: 112.0 130 | Standard_H16m: 131 | cpu: 16.0 132 | mem: 224.0 133 | Standard_H16mr: 134 | cpu: 16.0 135 | mem: 224.0 136 | Standard_H16r: 137 | cpu: 16.0 138 | mem: 112.0 139 | Standard_H8: 140 | cpu: 8.0 141 | mem: 56.0 142 | Standard_H8m: 143 | cpu: 8.0 144 | mem: 112.0 145 | 146 | -------------------------------------------------------------------------------- /yaml/gce.yaml: -------------------------------------------------------------------------------- 1 | f1-micro: 2 | cpu: 0.2 3 | mem: 0.6 4 | g1-small: 5 | cpu: 0.5 6 | mem: 1.7 7 | n1-highcpu-16: 8 | cpu: 16.0 9 | mem: 14.4 10 | n1-highcpu-2: 11 | cpu: 2.0 12 | mem: 1.8 13 | n1-highcpu-32: 14 | cpu: 32.0 15 | mem: 28.8 16 | n1-highcpu-4: 17 | cpu: 4.0 18 | mem: 3.6 19 | n1-highcpu-64: 20 | cpu: 64.0 21 | mem: 57.6 22 | n1-highcpu-8: 23 | cpu: 8.0 24 | mem: 7.2 25 | n1-highmem-16: 26 | cpu: 16.0 27 | mem: 104.0 28 | n1-highmem-2: 29 | cpu: 2.0 30 | mem: 13.0 31 | n1-highmem-32: 32 | cpu: 32.0 33 | mem: 208.0 34 | n1-highmem-4: 35 | cpu: 4.0 36 | mem: 26.0 37 | n1-highmem-64: 38 | cpu: 64.0 39 | mem: 416.0 40 | n1-highmem-8: 41 | cpu: 8.0 42 | mem: 52.0 43 | n1-standard-1: 44 | cpu: 1.0 45 | mem: 3.75 46 | n1-standard-16: 47 | cpu: 16.0 48 | mem: 60.0 49 | n1-standard-2: 50 | cpu: 2.0 51 | mem: 7.5 52 | n1-standard-32: 53 | cpu: 32.0 54 | mem: 120.0 55 | n1-standard-4: 56 | cpu: 4.0 57 | mem: 15.0 58 | n1-standard-64: 59 | cpu: 64.0 60 | mem: 240.0 61 | n1-standard-8: 62 | cpu: 8.0 63 | mem: 30.0 64 | 65 | --------------------------------------------------------------------------------