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.

chore: bump version to 0.6.19

+12 -3
+9
Dockerfile
··· 56 56 COPY --from=builder /usr/lib/*/libusb-1.0.so.0* /usr/lib/ 57 57 COPY --from=builder /usr/lib/*/libudev.so.1* /usr/lib/ 58 58 COPY --from=builder /usr/lib/*/libcap.so.2* /usr/lib/ 59 + COPY --from=builder /usr/lib/*/libsystemd.so.0* /lib/x86_64-linux-gnu/libsystemd.so.0* /usr/lib/ 60 + COPY --from=builder /usr/lib/*/libgcrypt.so.20* /lib/x86_64-linux-gnu/libgcrypt.so.20* /usr/lib/ 61 + COPY --from=builder /usr/lib/*/liblzma.so.5* /lib/x86_64-linux-gnu/liblzma.so.5* /usr/lib/ 62 + COPY --from=builder /usr/lib/*/libzstd.so.1* /lib/x86_64-linux-gnu/libzstd.so.1* /usr/lib/ 63 + COPY --from=builder /usr/lib/*/liblz4.so.1* /lib/x86_64-linux-gnu/liblz4.so.1* /usr/lib/ 64 + COPY --from=builder /usr/lib/*/libgpg-error.so.0* /lib/x86_64-linux-gnu/libgpg-error.so.0* /usr/lib/ 59 65 COPY --from=builder /lib/*/libgcc_s.so.1* /usr/lib/ 60 66 61 67 # Copy essential binaries ··· 64 70 65 71 # Copy udev rules for HSM devices (CCID support) 66 72 COPY --from=builder /lib/udev/rules.d/92-libccid.rules /lib/udev/rules.d/ 73 + 74 + # Copy CCID drivers for pcscd 75 + COPY --from=builder /usr/lib/pcsc /usr/lib/pcsc 67 76 68 77 # Copy CA certificates 69 78 COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
+1 -1
Makefile
··· 3 3 # To re-generate a bundle for another specific version without changing the standard setup, you can: 4 4 # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) 5 5 # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) 6 - VERSION ?= 0.6.18 6 + VERSION ?= 0.6.19 7 7 8 8 # CHANNELS define the bundle channels used in the bundle. 9 9 # Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
+2 -2
helm/hsm-secrets-operator/Chart.yaml
··· 2 2 name: hsm-secrets-operator 3 3 description: A Kubernetes operator that bridges Pico HSM binary data storage with Kubernetes Secrets 4 4 type: application 5 - version: 0.6.18 6 - appVersion: v0.6.18 5 + version: 0.6.19 6 + appVersion: v0.6.19 7 7 icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/kubernetes/icon/color/kubernetes-icon-color.svg 8 8 home: https://github.com/evanjarrett/hsm-secrets-operator 9 9 sources: