mirror of https://github.com/rancher/ui.git
Revert "Add standard volume type for AWS (#3351)"
This reverts commit 693f39283a.
This commit is contained in:
parent
43d60ccc58
commit
dd76897e67
|
|
@ -13,13 +13,6 @@ import { randomStr } from 'shared/utils/util';
|
|||
|
||||
let RANCHER_GROUP = 'rancher-nodes';
|
||||
|
||||
const VOLUME_TYPES = [
|
||||
'gp2',
|
||||
'io1',
|
||||
'st1',
|
||||
'sc1',
|
||||
'standard'
|
||||
];
|
||||
|
||||
export default Component.extend(NodeDriver, {
|
||||
prefs: service(),
|
||||
|
|
@ -37,7 +30,6 @@ export default Component.extend(NodeDriver, {
|
|||
defaultSecurityGroupName: RANCHER_GROUP,
|
||||
whichSecurityGroup: 'default',
|
||||
instanceTypes: INSTANCE_TYPES,
|
||||
volumeTypes: VOLUME_TYPES,
|
||||
regionChoices: REGIONS,
|
||||
step: 1,
|
||||
tags: null,
|
||||
|
|
|
|||
|
|
@ -391,28 +391,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col span-6">
|
||||
<label class="acc-label">
|
||||
{{t "nodeDriver.amazonec2.rootVolumeType.label"}}
|
||||
</label>
|
||||
<select
|
||||
id="amazonec2-volume-type-select"
|
||||
class="form-control"
|
||||
onchange={{action (mut config.volumeType) value="target.value"}}
|
||||
>
|
||||
{{#each volumeTypes as |choice|}}
|
||||
<option
|
||||
value={{choice}}
|
||||
selected={{eq config.volumeType choice}}
|
||||
>
|
||||
{{t (concat 'cruStorageClass.aws-ebs.type.' choice)}}
|
||||
</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col span-6">
|
||||
<label class="acc-label">
|
||||
|
|
|
|||
|
|
@ -4046,7 +4046,6 @@ cruStorageClass:
|
|||
io1: 'IO1 - Provisioned IOPS SSD'
|
||||
st1: 'ST1 - Throughput-Optimized HDD'
|
||||
sc1: 'SC1 - Cold-Storage HDD'
|
||||
standard: 'Standard - Magnetic'
|
||||
zone:
|
||||
label: Availability Zone
|
||||
automatic: "Automatic: Zones the cluster has a node in"
|
||||
|
|
@ -6814,8 +6813,6 @@ nodeDriver:
|
|||
spotPrice:
|
||||
label: Spot Price
|
||||
unit: $
|
||||
rootVolumeType:
|
||||
label: Root Volume Type
|
||||
digitalocean:
|
||||
droplet:
|
||||
title: Droplet Options
|
||||
|
|
|
|||
Loading…
Reference in New Issue