A Kubernetes operator that bridges Hardware Security Module (HSM) data storage with Kubernetes Secrets, providing true secret portability th
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

try with polkit?

+2 -2
+1 -1
Dockerfile
··· 30 30 RUN CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o hsm-operator cmd/hsm-operator/main.go 31 31 32 32 FROM alpine:3.22 33 - RUN apk add --no-cache opensc-dev ccid pcsc-lite openssl libtool libusb ca-certificates eudev 33 + RUN apk add --no-cache opensc-dev ccid pcsc-lite openssl libtool libusb ca-certificates eudev polkit 34 34 35 35 WORKDIR / 36 36 COPY --from=builder /workspace/hsm-operator .
+1 -1
entrypoint.sh
··· 1 1 #!/bin/sh 2 2 set -e 3 3 4 - pcscd & 4 + pcscd -d -a & 5 5 sleep 2 6 6 7 7 # Entrypoint script for HSM Secrets Operator