Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ATOR-330 - Memory improvement (#31) #33

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: DEV - Build and Deploy

on:
push:
pull_request:
branches:
- development
- main
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions operations/deploy-dev.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ job "onionoo-dev" {
}

resources {
cpu = 500
memory = 1000
cpu = 512
memory = 768
}

service {
Expand Down
8 changes: 4 additions & 4 deletions operations/deploy-live.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ job "onionoo-live" {
}

resources {
cpu = 1000
memory = 1500
cpu = 1024
memory = 2048
}

service {
Expand Down Expand Up @@ -93,8 +93,8 @@ job "onionoo-live" {
}

resources {
cpu = 250
memory = 750
cpu = 256
memory = 768
}

service {
Expand Down
8 changes: 4 additions & 4 deletions operations/deploy-stage.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ job "onionoo-stage" {
}

resources {
cpu = 500
memory = 1000
cpu = 512
memory = 768
}

service {
Expand Down Expand Up @@ -93,8 +93,8 @@ job "onionoo-stage" {
}

resources {
cpu = 250
memory = 500
cpu = 256
memory = 512
}

service {
Expand Down
Loading