Disable autoscaling in GCP config

GAE regularly keeps an idle instance alive just in case but
that seems to count towards the instance hours quota. Disable
that to avoid being instanceless for a few hours a day.
This commit is contained in:
Laszlo Zeke 2020-09-04 14:14:01 +02:00
parent 246ae47c80
commit fc67ccba75
1 changed files with 6 additions and 1 deletions

View File

@ -7,4 +7,9 @@ handlers:
upload: favicon\.ico
- url: /.*
script: twitchrss.app
script: twitchrss.app
automatic_scaling:
max_instances: 1
max_idle_instances: 1