Implementing Request Encryption with RestClient Interceptors
When implementing request encryption that includes payload data, the conventional approach involves converting the request body to a string format before encryption. Here's a typical pattern:
String payloadString = ModelOptionsUtils.toJsonString(payload);
String hashedRequestPayload = sha256Hex(payloadString);
// Add hashedRequestPayload to hea ...
Posted on Wed, 12 Aug 2026 16:55:32 +0000 by kaitan
ListWatcher Implementation in Kubernetes client-go
The ListWatcher component provides core functionality for the Reflector pattern in Kubernetes controllers. This mechenism enables efficient resource synchronization by combining initial list operations with subsequent watch events.
Constructing ListWatcher Instances
ListWatcher objects are created using factory functions that configure their li ...
Posted on Tue, 19 May 2026 08:38:42 +0000 by parkie