I want to create and deploy a new service to the existing app in App-engine in Google Cloud Platform.
The app can be accessed by URL test.appspot.com
I want to create a new service with a simple web page that can be accessed using URL my-service.test.appspot.com in the app-engine.
I know I need to create the app.yaml and deploy it, but I am not sure if I need to use the existing app.yaml which was already deployed previously or I can create a new app.yaml with a new service name and deploy it.
Will deploying with new app.yaml overwrite the app and existing services or just create my new service in the App-engine?
What are the steps I need to follow to deploy new service to existing app in App-engine?