feat: implement pod-specific secret injection for DaemonSets with automated lifecycle management

This commit is contained in:
Pengzhan Hao
2026-01-21 07:00:48 +00:00
commit cffe13168f
15 changed files with 973 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM golang:alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o test-client ./cmd/test-client
FROM alpine:3.18
WORKDIR /app
COPY --from=builder /app/test-client .
ENTRYPOINT ["./test-client"]