https://github.com/eclipse-xfsc/configuration-service
The configuration service provides an simple http endpoint which provides straight forward config map values as json files. It predefines no ingress so you have to declare one in the values.yaml file under ingress section.
https://github.com/eclipse-xfsc/configuration-service
config-map configuration golang kubernetes rest
Last synced: 17 days ago
JSON representation
The configuration service provides an simple http endpoint which provides straight forward config map values as json files. It predefines no ingress so you have to declare one in the values.yaml file under ingress section.
- Host: GitHub
- URL: https://github.com/eclipse-xfsc/configuration-service
- Owner: eclipse-xfsc
- License: apache-2.0
- Created: 2025-04-10T13:24:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-05-12T13:38:30.000Z (about 1 month ago)
- Last Synced: 2026-05-12T15:19:43.119Z (about 1 month ago)
- Topics: config-map, configuration, golang, kubernetes, rest
- Language: Go
- Size: 104 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Configuration Service
The configuration service provides an simple http endpoint which provides straight forward config map values as json files. It predefines no ingress so you have to declare one in the values.yaml file under ingress section.
Note: This service requires and service account in kubernetes with access to read config maps in the namespace.
# Use Case
The service provides for UIs or any other application a simple way to delivery config map content from the cluster.
# Functionality
Translates 1:1 a config map to rest api output. Example:
Config Map:
```
data:
example: value
```
Rest API:
```
{
"example":"value"
}
```