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.

fix

+5 -1
+5 -1
cmd/test/main.go
··· 46 46 if err := client.Initialize(ctx, config); err != nil { 47 47 log.Fatalf("Failed to initialize: %v", err) 48 48 } 49 - defer client.Close() 49 + defer func() { 50 + if err := client.Close(); err != nil { 51 + log.Fatalf("Failed to close client") 52 + } 53 + }() 50 54 51 55 // Execute operation 52 56 switch operation {