-
Notifications
You must be signed in to change notification settings - Fork 29
Make instance type info more discoverable #3445
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<table> | ||
<tr> | ||
<th width="30%">Type</th> | ||
<th width="35%">Memory (GiB)</th> | ||
<th width="35%">VCPU Count</th> | ||
</tr> | ||
<tr> | ||
<th>r1.small</th> | ||
<td>8 GB</td> | ||
<td>2 VCPUs</td> | ||
</tr> | ||
<tr> | ||
<th>r1.medium</th> | ||
<td>16 GB</td> | ||
<td>4 VCPUs</td> | ||
</tr> | ||
<tr> | ||
<th>r1.large</th> | ||
<td>32 GB</td> | ||
<td>8 VCPUs</td> | ||
</tr> | ||
<tr> | ||
<th>r1.xlarge</th> | ||
<td>64 GB</td> | ||
<td>16 VCPUs</td> | ||
</tr> | ||
<tr> | ||
<th>r1.2xlarge</th> | ||
<td>128 GB</td> | ||
<td>32 VCPUs</td> | ||
</tr> | ||
</table> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import Prerequisites from "../partials/cmx/_prerequisites.mdx" | ||
import InstanceTypes from "../partials/cmx/_instance-types.mdx" | ||
|
||
# Create VMs (Beta) | ||
|
||
|
@@ -18,8 +19,14 @@ The following VM types are supported: | |
|
||
| Distribution | Versions | Instance Types | | ||
| :---- | :---- | :---- | | ||
| ubuntu | 24.04, 22.04 | r1.small, r1.medium, r1.large, r1.xlarge, r1.2xlarge | | ||
| almalinux | 8, 9, 10 | r1.small, r1.medium, r1.large, r1.xlarge, r1.2xlarge | | ||
| ubuntu | 24.04, 22.04 | r1.small, r1.medium, r1.large, r1.xlarge, r1.2xlarge. See [Replicated Instance Types](#replicated-instance-types).| | ||
| almalinux | 8, 9, 10 | r1.small, r1.medium, r1.large, r1.xlarge, r1.2xlarge. See [Replicated Instance Types](#replicated-instance-types). | | ||
|
||
## Replicated Instance Types | ||
|
||
The following describes the Replicated instance types for VMs: | ||
|
||
<InstanceTypes/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ^ I had a hard time finding this instance types info when I was creating a VM the other day. Previously, it was just in the "Supported Cluster Types" topic. Added to a partial so it can appear here as well There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Much better! |
||
|
||
## Limitations | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -229,20 +229,21 @@ const sidebars = { | |
items: [ | ||
'vendor/testing-about', | ||
'vendor/testing-pricing', | ||
'vendor/testing-supported-clusters', | ||
{ | ||
type: 'category', | ||
label: 'Use Compatibility Matrix', | ||
items: [ | ||
'vendor/testing-how-to', | ||
'vendor/testing-supported-clusters', | ||
'vendor/testing-ingress', | ||
'vendor/testing-cluster-addons', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ^ moves the rest of the clusters stuff under "Use CMX" alongside corresponding VMs topics There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice! I like this organization. How about making these titles more consistent and shorter? Since they are already under a group with the words "Compatibility Matrix"
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a great idea--some of those older ones are definitely on the long side... I'll do a separate story for that since I'll also need to update all the cross-references to these pages after changing the titles |
||
'vendor/testing-vm-create', | ||
'vendor/testing-vm-networking', | ||
'vendor/testing-ci-cd', | ||
], | ||
}, | ||
'vendor/testing-cluster-addons', | ||
|
||
'vendor/compatibility-matrix-usage', | ||
'vendor/testing-ingress', | ||
], | ||
}, | ||
{ | ||
|
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.
^ updated this page title to better match the "VM Networking" pattern. Before, it wasn't clear that it was specific to clusters