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';
|
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,
|
||||||
|
|
|
||||||
|
|
@ -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">
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue