cloud-configuration/helm/wahlrecht
Jim Martens d94fa69459
change: Set security context by default to restrictive values
2024-02-04 22:26:43 +01:00
..
environments Filled out README files and added production config for wahlrecht 2023-08-20 23:08:58 +02:00
.helmignore Added wahlrecht chart 2023-08-20 20:05:24 +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 wahlrecht chart 2023-08-20 20:05:24 +02:00
README.md Filled out README files and added production config for wahlrecht 2023-08-20 23:08:58 +02:00
default_values.yaml Added wahlrecht chart 2023-08-20 20:05:24 +02:00
overwrite_values.yaml Updated Wahlrecht chart 2023-11-04 13:18:01 +01:00
templates Added wahlrecht chart 2023-08-20 20:05:24 +02:00
values.yaml change: Set security context by default to restrictive values 2024-02-04 22:26:43 +01:00

README.md

Wahlrecht API

This chart installs the Wahlrecht API into the Kubernetes cluster.

Configuration

  • by default, it expects a Spring Boot config server running inside the cluster, available under http://configserver:8888/config
    application:
      configserver:
        host: configserver
        port: 8888
        prefix: /config
        scheme: http
    
  • by default, it expects a Kafka running inside the cluster, available under kafka:9092
    application:
      kafka:
        host: kafka
        port: 9092
    
  • configure Keycloak
    application:
      keycloak:
        url: https://yourKeycloak
        realm: yourRealm
    
  • configure secrets (the application expects these values to be set)
    secrets:
      MONGODB_CONNECTION_STRING: mongoDBConnectionString
      CLIENT_SECRET: keycloakClientSecret
    
    Should you want to use, for example, an external secret provider, then you are currently out of luck. The chart does not support that, yet.