Skip to content

Commit

Permalink
Feat: update QED instance sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Luis Lucas committed Apr 3, 2019
1 parent 6163dfe commit c1e7e6b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
6 changes: 3 additions & 3 deletions deploy/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "qed" {
count = 3

name = "qed"
instance_type = "m5.2xlarge"
instance_type = "c5n.2xlarge"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand All @@ -56,7 +56,7 @@ module "inmemory-storage" {
source = "./modules/inmemory_storage"

name = "inmemory-storage"
instance_type = "m5.large"
instance_type = "r5.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand All @@ -71,7 +71,7 @@ module "agent-publisher" {

role = "publisher"
name = "agent-publisher"
instance_type = "r5.large"
instance_type = "m5.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand Down
64 changes: 32 additions & 32 deletions tests/riot.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,40 +49,40 @@ components:
Config:
type: object
properties:
endpoint:
type: string
apikey
type: string
insecure:
type: bool
kind:
type: string
enum: ["add", "membership", "incremental"]
offload:
type: bool
profiling:
type: bool
incrementalDelta:
type: integer
minimum: 0
offset:
type: integer
minimum: 0
numRequests:
type: integer
minimum: 0
maxGoRoutines:
type: integer
minimum: 0
clusterSize:
type: integer
minimum: 0
Plan:
type: array
items:
endpoint:
type: string
apikey
type: string
insecure:
type: bool
kind:
type: string
enum: ["add", "membership", "incremental"]
offload:
type: bool
profiling:
type: bool
incrementalDelta:
type: integer
minimum: 0
offset:
type: integer
minimum: 0
numRequests:
type: integer
minimum: 0
maxGoRoutines:
type: integer
minimum: 0
clusterSize:
type: integer
minimum: 0
Plan:
type: array
items:
$ref: '#/components/schemas/Config'
type: array
items:
$ref: '#/components/schemas/Config'
paths:
/:
Expand Down

0 comments on commit c1e7e6b

Please sign in to comment.