Skip to content

Commit 51d8c59

Browse files
committed
Merge pull request #451 from ycombinator/perf-to-general
Updating performance flavor references to equivalent general flavors.
2 parents 276fd05 + e9b8557 commit 51d8c59

File tree

7 files changed

+31
-31
lines changed

7 files changed

+31
-31
lines changed

samples/Compute/create_server_from_bootable_volume.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* - RAX_API_KEY: Your Rackspace Cloud Account API Key,
2525
* - RAX_REGION: Rackspace Cloud region in which to create server; e.g.: DFW,
2626
* - RAX_BOOTABLE_VOLUME_ID: ID of bootable volume in Rackspace Cloud region, and
27-
* - RAX_FLAVOR_ID: ID of a compute flavor (performance or higher) in the Rackspace Cloud; e.g.: performance1-1.
27+
* - RAX_FLAVOR_ID: ID of a compute flavor (general or higher) in the Rackspace Cloud; e.g.: general1-1.
2828
*
2929
* - You have an existing keypair. For this script, it will be called 'my_keypair'
3030
* but this will change depending on what you called yours.

samples/Compute/create_server_from_bootable_volume_delete_on_termination.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* - RAX_API_KEY: Your Rackspace Cloud Account API Key,
2525
* - RAX_REGION: Rackspace Cloud region in which to create server; e.g.: DFW,
2626
* - RAX_BOOTABLE_VOLUME_ID: ID of bootable volume in Rackspace Cloud region, and
27-
* - RAX_FLAVOR_ID: ID of a compute flavor (performance or higher) in the Rackspace Cloud; e.g.: performance1-1.
27+
* - RAX_FLAVOR_ID: ID of a compute flavor (general or higher) in the Rackspace Cloud; e.g.: general1-1.
2828
*
2929
* - You have an existing keypair. For this script, it will be called 'my_keypair'
3030
* but this will change depending on what you called yours.

samples/Orchestration/lamp-updated.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ parameters:
5555
Required: Rackspace Cloud Server flavor to use. The size is based on the
5656
amount of RAM for the provisioned server.
5757
type: string
58-
default: 1 GB Performance
58+
default: 1 GB General Purpose v1
5959
constraints:
6060
- allowed_values:
61-
- 1 GB Performance
62-
- 2 GB Performance
63-
- 4 GB Performance
64-
- 8 GB Performance
65-
- 15 GB Performance
66-
- 30 GB Performance
61+
- 1 GB General Purpose v1
62+
- 2 GB General Purpose v1
63+
- 4 GB General Purpose v1
64+
- 8 GB General Purpose v1
65+
- 15 GB I/O v1
66+
- 30 GB I/O v1
6767
description: |
6868
Must be a valid Rackspace Cloud Server flavor for the region you have
6969
selected to deploy into.

samples/Orchestration/lamp.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ parameters:
5555
Required: Rackspace Cloud Server flavor to use. The size is based on the
5656
amount of RAM for the provisioned server.
5757
type: string
58-
default: 1 GB Performance
58+
default: 1 GB General Purpose v1
5959
constraints:
6060
- allowed_values:
61-
- 1 GB Performance
62-
- 2 GB Performance
63-
- 4 GB Performance
64-
- 8 GB Performance
65-
- 15 GB Performance
66-
- 30 GB Performance
61+
- 1 GB General Purpose v1
62+
- 2 GB General Purpose v1
63+
- 4 GB General Purpose v1
64+
- 8 GB General Purpose v1
65+
- 15 GB I/O v1
66+
- 30 GB I/O v1
6767
description: |
6868
Must be a valid Rackspace Cloud Server flavor for the region you have
6969
selected to deploy into.

tests/OpenCloud/Smoke/Resource/Orchestration/lamp-updated.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ parameters:
5555
Required: Rackspace Cloud Server flavor to use. The size is based on the
5656
amount of RAM for the provisioned server.
5757
type: string
58-
default: 1 GB Performance
58+
default: 1 GB General Purpose v1
5959
constraints:
6060
- allowed_values:
61-
- 1 GB Performance
62-
- 2 GB Performance
63-
- 4 GB Performance
64-
- 8 GB Performance
65-
- 15 GB Performance
66-
- 30 GB Performance
61+
- 1 GB General Purpose v1
62+
- 2 GB General Purpose v1
63+
- 4 GB General Purpose v1
64+
- 8 GB General Purpose v1
65+
- 15 GB I/O v1
66+
- 30 GB I/O v1
6767
description: |
6868
Must be a valid Rackspace Cloud Server flavor for the region you have
6969
selected to deploy into.

tests/OpenCloud/Smoke/Resource/Orchestration/lamp.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ parameters:
5555
Required: Rackspace Cloud Server flavor to use. The size is based on the
5656
amount of RAM for the provisioned server.
5757
type: string
58-
default: 1 GB Performance
58+
default: 1 GB General Purpose v1
5959
constraints:
6060
- allowed_values:
61-
- 1 GB Performance
62-
- 2 GB Performance
63-
- 4 GB Performance
64-
- 8 GB Performance
65-
- 15 GB Performance
66-
- 30 GB Performance
61+
- 1 GB General Purpose v1
62+
- 2 GB General Purpose v1
63+
- 4 GB General Purpose v1
64+
- 8 GB General Purpose v1
65+
- 15 GB I/O v1
66+
- 30 GB I/O v1
6767
description: |
6868
Must be a valid Rackspace Cloud Server flavor for the region you have
6969
selected to deploy into.

tests/OpenCloud/Smoke/Unit/Compute.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Compute extends AbstractUnit implements UnitInterface
3535
const SERVER_NAME = 'FooServer';
3636
const SNAPSHOT_NAME = 'FooSnapshot';
3737

38-
const FLAVOR = 'performance1-2';
38+
const FLAVOR = 'general1-2';
3939
const IMAGE = "046832f9-4549-4b38-a903-11acecac8cb9";
4040

4141
public function setupService()

0 commit comments

Comments
 (0)