I had successfully setup a single app in the app engine. Now I want to deploy 2-3 micro service and
read a few articles on the subject but what I really want is a simple tutorial .
https://cloud.google.com/appengine/docs/python/modules/converting
can anyone post a simple file structure as to how to do this :
- app.yaml
- micorservice1
- folder1
- lib1
- lib2
- folder2
- htmls
- js
- css
- app1.py
- folder1
- micorservice2
- folder1
- lib1
- lib2
- folder2
- htmls
- js
- css
- app2.py
- folder1
- index.yaml
but what is in app.yaml exactly?
how do I deploy to each microservice exactly ?
how do enable INTERNAL communication only between the microservices? I don't want external calls directly at them but via a load balancer.