From 2ed2959ed27096834675d436b098c1e99178a8ea Mon Sep 17 00:00:00 2001 From: Ultradesu Date: Mon, 15 Sep 2025 15:00:23 +0300 Subject: [PATCH] Added query params to get values in plain text --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index e763828..82da750 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ kubectl apply -f deployment.yaml kubectl apply -f service.yaml ``` +## Security + +⚠️ **The service has no built-in authentication**. Use a proxy for auth (nginx, oauth2-proxy, etc). + ## Configuration Edit `deployment.yaml` to specify which secrets to display: @@ -31,3 +35,10 @@ args: - "--namespace" - "k8s-secrets" ``` + +## API Usage + +```bash +# Get secret field as plaintext +curl "http://localhost:3000/secret?name=my-secret&field=password" +```