The application.yml
in spring-cloud-kubernetes-configserver
does not behave the same way as in spring-cloud-configserver
.
#1795
Labels
I have config maps like this
If I call the kubernetes config server with
application=service
andprofile=profile1
curl http://localhost:31888/service/profile1
, I get a response that only includes values from the config mapservice
andservice-profile1
. I would expect it to also include the contents ofapplication
andapplication-profile1
.response
If I split the application config map into two separate maps and call the config server, the response includes the contents of
application
. I would still expect it to includeapplication-profile1
as well.response
The text was updated successfully, but these errors were encountered: