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.

don't include _metadata on the secret

+5
+5
internal/hsm/pkcs11_client.go
··· 325 325 continue // Skip objects that don't match our path 326 326 } 327 327 328 + // Skip metadata objects when reading secrets 329 + if strings.HasSuffix(label, metadataKeySuffix) { 330 + continue 331 + } 332 + 328 333 matchingObjects++ 329 334 330 335 // Extract key name from label (remove path prefix)