In My project we want to use existing gitlab project repo for the config server rather than maintaining a different repo for a particular service. Now we have deployed the config server in PCF with 1 GB of disk space but looks like 1 GB is not enough. When config server clone the repo it crosses 1GB and it makes the application down. I am looking for a solution where i can configure config server to check out folders which only contains the property files.
Background: I tried to run config server in local for the same repo checked out default branch size is around 900 mb
spring:
cloud:
config:
server:
git:
uri: https://**********************.git
username: *****
password: **
searchPaths: AAA/ABA*
default-label: develop
skipSslValidation: true
application:
name: ConfigServer