Skip to content

Commit

Permalink
[ChainOps] Peggy memory updates. (#713)
Browse files Browse the repository at this point in the history
* Scale out the clusters, to accomodate the updated peggy memory requirements.

* Fix for test builds.

* Re-added the missing sifnode resource limits.
  • Loading branch information
_IM authored Feb 12, 2021
1 parent e5d66c9 commit b09eee6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Build image
run: |
make CHAINNET=${{ steps.vars.outputs.sha_short }} BINARY=sifnoded build-image
make CHAINNET=testnet IMAGE_TAG=${{ steps.vars.outputs.sha_short }} BINARY=sifnoded build-image
- name: Push image
run: |
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/ebrelayer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ ingress:
resources:
requests:
cpu: 0.5
memory: 1Gi
memory: 4Gi
limits:
memory: 2Gi
memory: 4Gi

autoscaling:
enabled: false
Expand Down
12 changes: 6 additions & 6 deletions deploy/terraform/providers/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ variable "tags" {
}

variable "desired_capacity" {
description = "desired kubes nodes pre cluster"
default = 1
description = "Desired nodes per cluster"
default = 2
}

variable "max_capacity" {
description = "Max kubes nodes pre cluster"
default = 3
description = "Max nodes per cluster"
default = 5
}

variable "min_capacity" {
description = "Min capacity of nodes pre kubes cluster"
default = 1
description = "Min nodes per cluster"
default = 2
}

variable "instance_type" {
Expand Down

0 comments on commit b09eee6

Please sign in to comment.