cloud-configuration/helm/timetable
Jim Martens d94fa69459
change: Set security context by default to restrictive values
2024-02-04 22:26:43 +01:00
..
.helmignore feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +01:00
CHANGELOG.md feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +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
README.md feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +01:00
default_values.yaml feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +01:00
overwrite_values.yaml feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +01:00
templates feat: Add timetable helm chart and argo application 2024-01-09 19:03:31 +01: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.