cloud-configuration/helm/configserver
Jim Martens d94fa69459
change: Set security context by default to restrictive values
2024-02-04 22:26:43 +01:00
..
environments Moved actual tag version to environments file 2023-08-20 22:17:45 +02:00
.helmignore Added configserver helm chart 2023-08-20 18:53:49 +02:00
CHANGELOG.md chore: Add release please support 2023-12-13 18:16:37 +01:00
Chart.lock change: Set security context by default to restrictive values 2024-02-04 22:26:43 +01:00
Chart.yaml change: Set security context by default to restrictive values 2024-02-04 22:26:43 +01:00
LICENSE Added configserver helm chart 2023-08-20 18:53:49 +02:00
README.md Prepared Configserver for Artifact Hub release 2023-08-21 22:11:55 +02:00
default_values.yaml Added configserver helm chart 2023-08-20 18:53:49 +02:00
overwrite_values.yaml Removed end vars from configserver chart 2023-10-30 08:26:28 +01:00
templates Added configserver helm chart 2023-08-20 18:53:49 +02:00
values.yaml change: Set security context by default to restrictive values 2024-02-04 22:26:43 +01:00

README.md

Configserver Helm chart

This chart installs a minimal Spring Boot configserver into the Kubernetes cluster.

Configuration

  • by default, it expects a Kafka running inside the cluster, available under kafka:9092
    application:
      kafka:
        host: kafka
        port: 9092
    
  • change Git repository used to fetch configuration
    application:
      repositoryPath: yourPath
    
  • if necessary, adjust search path within repository
 application:
   searchPath: yourPath
  • if necessary, adjust prefix of config server
 application:
   prefix: /config
  • if necessary, adjust ports
 application:
   port: 8888
   actuatorPort: 13000
 service:
   port: 8888
   actuatorPort: 13000
  • as this application uses all the templates of the template library chart, you have all the configuration options that come with the library chart as well