Minimal deployment package for Pinorama Server - REST API for storing and searching Pino logs.
- Source: https://github.com/keenbeen32/pinorama-server
- Image:
ghcr.io/keenbeen32/pinorama-server(after first push, GitHub Actions will build and push)
docker build -t pinorama-server:latest .# Install (set your image registry)
helm install pinorama ./helm/pinorama-server \
--set image.repository=ghcr.io/keenbeen32/pinorama-server
# Or use values file
helm install pinorama ./helm/pinorama-server -f helm/pinorama-server/values.yamlkubectl port-forward svc/pinorama-pinorama-server 6200:6200
curl http://localhost:6200/healthcurl -X POST http://localhost:6200/bulk \
-H "Content-Type: application/json" \
-d '[{"level":30,"msg":"test","time":'$(date +%s000)'}]'