Sr. Engineer at GlobalLogic Inc - A Hitachi Company
Company website: https://globallogic.com
Cloud & DevOps Engineer with expertise in Kubernetes, security, and AI-driven automation. IEEE Senior Member with a focus on delivering scalable architectures and advancing cloud-native engineering practices through research and hands-on contribution to the community.
Jan 2026 - Current
Kubernetes security awareness and troubleshooting tool featuring CIS Benchmark scoring, environment-aware analysis (PROD vs DEV), and actionable recommendations. Not for compliance auditing - use kube-bench for official CIS compliance.
Docker & Container Engineering
Aug 2025 - Current
A hands‑on, lab‑based toolkit for securing containerised environments. Progress from core audit techniques to advanced AI‑enabled runtime security, with clear examples, scripts, and best practices.
Stats
| Reputation: | 1029 |
| Pageviews: | 41.6K |
| Articles: | 14 |
| Comments: | 6 |
Comments
Apr 23, 2026 · Jubin Abhishek Soni
Thanks for the clarification—that’s really helpful. Makes sense that the core behavior is similar since the underlying components are the same.
Apr 07, 2026 · Jubin Abhishek Soni
Great article—really appreciate the clear breakdown of AKS capabilities, especially around scalability.
I’m curious, how does AKS autoscaling (cluster autoscaler + HPA) typically behave under sudden traffic spikes compared to self-managed Kubernetes clusters?
Mar 10, 2026 · Shamsher Khan
I appreciate that! Stay tuned for more deep dives like this.
Nov 24, 2025 · VIVEK KATARYA
Great insights, Vivek!
Oct 21, 2025 · Shamsher Khan
The tool uses
kubectl get podsto detect unhealthy pods, including probe failures. No OpenAI needed for that.OpenAI is used for diagnosis. When a pod fails, the tool sends probe configs, logs, and events to GPT-4 to determine why it's failing.
For probe failures: kubectl shows the probe failed, but GPT-4 analyzes whether it's slow startup (increase
initialDelaySeconds), wrong endpoint, timeout settings, or an actual app problem.Detection = kubectl
Diagnosis = GPT-4
You can skip the LLM and read kubectl output yourself - that's traditional troubleshooting. The LLM reads the same data and suggests fixes.
Oct 13, 2025 · Shamsher Khan
Thanks for reading — curious how others use AI in Kubernetes diagnostics