I have a single manfiest to deploy a set of services. Some of these services use same environment variables. Is there a way I can group common configuration across apps in manifest?
May be you can try this:
---
env
name: value
and use below in your manifest files for deployment
inherit: env-mainfest.yml
spring_active_profiles
set with env:
specific settings for all services and just create an application-system.properties file and use spring profiles OR something similar if not spring based?