A tiny service collecting and aggregating well-known data from services in the same Kubernetes namespace. The data is merged and exposed as JSON object or plain text.
Find a file
semantic-release-bot 1f0d9ccff7 chore(release): 1.6.0
# [1.6.0](https://github.com/stenic/well-known/compare/v1.5.0...v1.6.0) (2023-06-12)

### Features

* Allow scaledown ([e13df93](e13df93dd8))
2023-06-12 13:09:23 +00:00
.github ci: Correct kubescape path 2023-04-12 01:27:53 +02:00
charts/well-known chore(release): 1.6.0 2023-06-12 13:09:23 +00:00
server feat: Only write on changes 2023-06-01 12:40:24 +02:00
CHANGELOG.md chore(release): 1.6.0 2023-06-12 13:09:23 +00:00
Dockerfile fix: Add more tests and run them 2023-04-12 00:59:23 +02:00
go.mod feat: Only write on changes 2023-06-01 12:40:24 +02:00
go.sum feat: Only write on changes 2023-06-01 12:40:24 +02:00
LICENSE docs: Add info 2023-03-13 22:50:29 +01:00
Makefile docs: More info 2023-03-14 09:11:52 +01:00
README.md docs: More info 2023-03-14 09:11:52 +01:00

Well-known

A tiny service collecting and aggregating well-known data from services in the same Kubernetes namespace. The data is merged and exposed as a JSON object.

Usage

Add an annotation to a service:

annotation path
well-known.stenic.io/[path] /.well-known/[path]

Example

apiVersion: v1
kind: Service
metadata:
  annotations:
    well-known.stenic.io/test-config: |
      {"example": "value"}      
curl http://[ingress]/.well-known/test-config

{
    "example": "value"
}