Revert "Add standard volume type for AWS (#3351)"

This reverts commit 693f39283a.
This commit is contained in:
Vincent Fiduccia 2019-09-17 18:03:23 -07:00 committed by GitHub
parent 43d60ccc58
commit dd76897e67
3 changed files with 0 additions and 33 deletions

View File

@ -13,13 +13,6 @@ import { randomStr } from 'shared/utils/util';
let RANCHER_GROUP = 'rancher-nodes'; let RANCHER_GROUP = 'rancher-nodes';
const VOLUME_TYPES = [
'gp2',
'io1',
'st1',
'sc1',
'standard'
];
export default Component.extend(NodeDriver, { export default Component.extend(NodeDriver, {
prefs: service(), prefs: service(),
@ -37,7 +30,6 @@ export default Component.extend(NodeDriver, {
defaultSecurityGroupName: RANCHER_GROUP, defaultSecurityGroupName: RANCHER_GROUP,
whichSecurityGroup: 'default', whichSecurityGroup: 'default',
instanceTypes: INSTANCE_TYPES, instanceTypes: INSTANCE_TYPES,
volumeTypes: VOLUME_TYPES,
regionChoices: REGIONS, regionChoices: REGIONS,
step: 1, step: 1,
tags: null, tags: null,

View File

@ -391,28 +391,6 @@
</div> </div>
</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="row">
<div class="col span-6"> <div class="col span-6">
<label class="acc-label"> <label class="acc-label">

View File

@ -4046,7 +4046,6 @@ cruStorageClass:
io1: 'IO1 - Provisioned IOPS SSD' io1: 'IO1 - Provisioned IOPS SSD'
st1: 'ST1 - Throughput-Optimized HDD' st1: 'ST1 - Throughput-Optimized HDD'
sc1: 'SC1 - Cold-Storage HDD' sc1: 'SC1 - Cold-Storage HDD'
standard: 'Standard - Magnetic'
zone: zone:
label: Availability Zone label: Availability Zone
automatic: "Automatic: Zones the cluster has a node in" automatic: "Automatic: Zones the cluster has a node in"
@ -6814,8 +6813,6 @@ nodeDriver:
spotPrice: spotPrice:
label: Spot Price label: Spot Price
unit: $ unit: $
rootVolumeType:
label: Root Volume Type
digitalocean: digitalocean:
droplet: droplet:
title: Droplet Options title: Droplet Options