Tagged articles
7 articles
Page 1 of 1
Ops Development & AI Practice
Ops Development & AI Practice
May 12, 2024 · Cloud Native

How to Efficiently Detect Changes in Complex Kubernetes Operator Objects

This article explains how to efficiently detect changes in complex Kubernetes Operator objects by comparing current and desired states using methods such as reflect.DeepEqual, hash‑based comparison, JSON Patch generation, deep copying, and custom comparison functions, and offers best‑practice guidance for reliable controller implementations.

Change DetectionDeepEqualGo
0 likes · 8 min read
How to Efficiently Detect Changes in Complex Kubernetes Operator Objects
System Architect Go
System Architect Go
Apr 7, 2023 · Fundamentals

Mastering JSON Patch: Efficiently Modify JSON with RFC 6902

This article explains the JSON Patch standard (RFC 6902), detailing its purpose, structure, supported operations, ordering and atomicity rules, and provides concrete code examples for add, remove, replace, move, copy, and test operations, including edge‑case handling.

APIHTTP PATCHJSON
0 likes · 11 min read
Mastering JSON Patch: Efficiently Modify JSON with RFC 6902
Infra Learning Club
Infra Learning Club
Sep 22, 2022 · Fundamentals

Why JSON Patch Beats JSON Merge Patch for Complex Kubernetes Updates

The article explains the differences between JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7396), shows concrete examples of each, and argues that JSON Patch is preferable for complex Kubernetes PATCH scenarios because Merge Patch’s simple format imposes serious limitations.

HTTP PATCHJSON Merge PatchJSON Patch
0 likes · 5 min read
Why JSON Patch Beats JSON Merge Patch for Complex Kubernetes Updates
Meituan Technology Team
Meituan Technology Team
Sep 28, 2017 · Information Security

Analysis and Exploitation of Spring Data REST CVE-2017-8046 Remote Code Execution Vulnerability

The article examines Spring Data REST’s CVE‑2017‑8046 remote‑code‑execution flaw, showing how a malicious JSON Patch path is turned into an unchecked SpEL expression that can run arbitrary commands, reproduces the exploit on a sample Spring Boot app, and advises upgrading to versions that include the path‑verification fix.

Backend SecurityCVE-2017-8046Exploit
0 likes · 17 min read
Analysis and Exploitation of Spring Data REST CVE-2017-8046 Remote Code Execution Vulnerability