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
2023-03-14 09:11:52 +01:00
.github fix: kubescape 2023-03-12 01:23:43 +01:00
charts/well-known docs: More info 2023-03-14 09:11:52 +01:00
server fix: Probes 2023-03-12 00:06:49 +01:00
CHANGELOG.md chore(release): 1.1.0 2023-03-12 00:41:06 +00:00
Dockerfile feat: Init poc 2023-03-11 20:58:56 +01:00
go.mod feat: Init poc 2023-03-11 20:58:56 +01:00
go.sum feat: Init poc 2023-03-11 20:58:56 +01: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"
}