I'm transitioning an application from GCE to GAE Flexible. It's currently running in a g1-small instance which is plenty for my needs, however when I try to specify a g1-small instance in my app.yaml
:
resources:
cpu: 0.5
memory_gb: 1.7
I can deploy but there's no indication that a smaller instance is actually being used.
After deploying, there's no indication that my app is running with the smaller instance size.
How can I use fractional vCPUs with the flexible environment? Thanks!