Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
adjust aggregator resources
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatoleAM committed Oct 7, 2023
1 parent 0af68e8 commit be4de1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions terraform/aggregator/aggregator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ resource "kubernetes_deployment" "app" {
}
}

replicas = 1
replicas = 5

template {
metadata {
Expand All @@ -85,12 +85,12 @@ resource "kubernetes_deployment" "app" {
resources {
limits = {
cpu = "500m"
memory = "512Mi"
memory = "1.25Gi"
}

requests = {
cpu = "10m"
memory = "50Mi"
memory = "1Gi"
}
}

Expand Down
1 change: 0 additions & 1 deletion terraform/irc-reader/irc-reader.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ resource "kubernetes_secret" "app" {
name = "stats-irc-reader"
namespace = var.namespace
}
depends_on = [data.kubernetes_secret.oauth]

data = {
"config.yaml" = templatefile("${path.module}/config.template.yaml", {
Expand Down

0 comments on commit be4de1c

Please sign in to comment.