Questions tagged [spring-cloud-config-server]

Spring Cloud Config provides server-side and client-side support for externalized configuration in a distributed system. More appropriate tag: spring-cloud-config.

211 questions
2
votes
1 answer

How force ssh RSA with PEM format use SHA-2 and NOT SHA-1 by default?

I have a spring config server but i change the repository to a private one and i am trying to use a SSH authentication. my application.yml its like this: spring: cloud: config: server: git: uri:…
Juan Sanchez
  • 113
  • 1
  • 9
2
votes
3 answers

Git Authentication Failure Spring Cloud config store

We are configuring spring cloud config server and below is how my application properties…
vaibhav
  • 3,929
  • 8
  • 45
  • 81
2
votes
1 answer

Springboot Config server client returns status code: -1

I'm trying to spin up a simple config server using native file location. the configuration of the server looks like below server: port: 9001 spring: cloud: config: server: native: search-locations:…
2
votes
2 answers

Spring Cloud Config - git-upload-pack not permitted

I have a spring-boot application running on docker environment that connect on Git repository to get application's configuration. My problem is from time to time the application gives an error when try to get the .properties file. It's strange…
Aldo Inácio da Silva
  • 824
  • 2
  • 14
  • 38
2
votes
0 answers

Spring Cloud Config Client is not reporting health

I have implemented Cloud Config Server, and (finally) is working fine, and providing the configuration to the clients. I'm using version 3.0.1 of Config Server (I had to upgrade because some bugs in 3.0.0). But my final step, to provide the health…
2
votes
0 answers

Spring Cloud Config Server OAuth2 authorization

I have a config server and spring boot microservices running with config server requiring basic authentication user/pw. I have a Keycloak server I want to use for authentication and authorization of the microservice to the config server. I have…
2
votes
4 answers

Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'some.other.property' in value "${some.other.property}"

I am new to Spring technology and this issue has been bugging me for hours. My spring cloud config client isn't able to read properties from the config server because I am getting an IllegalArgumentException. The config server displays all the…
2
votes
1 answer

SpringBoot Config Server file separator issue

I have configued Spring Boot Config server (2.4.1 version) integrated with Git repository. Config looks valid, there is no issue during loading files from git, however when i point to localhoast:port/application/dev i…
user1055201
  • 159
  • 7
  • 16
2
votes
1 answer

How to store and access html files from spring cloud config server?

I wanted to externalise the email templates to send email notifications so I am storing them in a templates folder in GIT repository which is mapped to our spring-cloud-config server. The templates folder in git repository has some .html files. Can…
2
votes
1 answer

Multiple instance with Spring Cloud Bus Kafka

My question is how to manage the multi instance with Spring Cloud Stream Kafka. Let me explain, in a Spring Cloud Stream Microservices context (eureka, configserver, kafka) I want to have 2 instances of the same microservice. When I change a…
2
votes
2 answers

Spring Cloud Config Server encryption issue

We have a Pivotal Cloud Foundry server which is configured with a Spring config server with the encryption key. In the corresponding properties file (via github), we have {cipher} prefixed for some simple properties and we are able to get the values…
2
votes
1 answer

Spring Cloud Config - Git Repository Errors

Spring Cloud Config Framework: I'm trying to integrate spring cloud config in java project with backend repository git which is bitbucket. Basically, I encounter two errors more frequently on different occasions. 2020-04-11 17:08:59.265 WARN 2792…
Deminem
  • 672
  • 8
  • 19
2
votes
2 answers

Spring Cloud config client not picking values from Config server

My Config client is not picking the property values from config server. http://localhost:8888/customer_service/default Above Config server endpoint is returning proper values for Config client, { "name": "customer_service", …
Arunprasad
  • 567
  • 4
  • 14
  • 29
2
votes
0 answers

spring cloud config client starts and stops immediately

I am trying to build basic spring boot cloud config server and client application using this link. Config server starts up without any issue but when I start config client it starts and then gets killed instantly. It is also able to reach to config…
1
vote
1 answer

Embedded Spring Cloud Config - How to retrieve a plain file?

I configured a very simple Spring Boot application with the following Gradle dependency: implementation 'org.springframework.cloud:spring-cloud-starter-bootstrap' The idea is to embed the Spring Cloud Config Server into the application. The…
1
2
3
14 15