Skip to content

Commit

Permalink
Keeping user costs low (#526)
Browse files Browse the repository at this point in the history
We've gotten reports of unexpected costs from users that left the hello world running and had two standard instances running for a month. This keeps the costs to a minimum to kick the tires.
  • Loading branch information
devlance authored and jmdobry committed Dec 8, 2017
1 parent f1e12d1 commit 0d9d7f5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions appengine/hello-world/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,16 @@
# [START app_yaml]
runtime: nodejs
env: flex

# This sample incurs costs to run on the App Engine flexible environment.
# The settings below are to reduce costs during testing and are not appropriate
# for production use. For more information, see:
# https://cloud.google.com/appengine/docs/flexible/python/configuring-your-app-with-app-yaml
manual_scaling:
instances: 1
resources:
cpu: 1
memory_gb: 0.5
disk_size_gb: 10

# [END app_yaml]

0 comments on commit 0d9d7f5

Please sign in to comment.