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

This commit is contained in:
2026-01-21 06:38:25 +00:00
committed by Pengzhan Hao
commit c6978e24dd
15 changed files with 969 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 webhook ./cmd/webhook
FROM alpine:3.18
WORKDIR /app
COPY --from=builder /app/webhook .
ENTRYPOINT ["./webhook"]