KSKaustav Sarkarinblogs.kaustavsarkar.dev·Jun 9 · 14 min readService Mesh Zero-Trust ArchitectureZero-trust is a property that emerges when several independent checks each verify a request on their own, without assuming the layers around them already did the work. It often gets described as a pro00
KBKrishna Bagalinblog.krishnabagal.com·May 27 · 8 min readI Built an Open-Source Vulnerability Scanner with a Real-Time Dashboard — Because Nothing Else Did It AllThe Problem That Started It All If you run servers, write code, or manage containers, you already know the uncomfortable truth: vulnerabilities, exposed secrets, and misconfigurations are everywhere. 93KVS
RBRajesh Bindevrajesh.hashnode.dev·May 26 · 5 min readDay 62: Manage Secrets in Kubernetes | 100 Days of DevOpsContent: Today I worked on implementing Kubernetes Secrets to securely manage sensitive information inside a Kubernetes cluster. This task helped me understand how Kubernetes stores confidential da00
ACAI Clarityinaiclarity.hashnode.dev·May 23 · 8 min readThe Pre-Commit Hook That Catches API Keys Before They Hit GitThe problem: secrets in git are forever You know the drill. A developer hardcodes a Stripe secret key to test a webhook handler locally. They commit. They push. Maybe they catch it themselves and run 00
NDNishant Desaiinkubernetesunderstanding.hashnode.dev·May 9 · 5 min readKubernetes ConfigMaps & Secrets Explained 🔐In real-world Kubernetes applications, hardcoding configuration values inside application code is a bad practice. Things like: Database URLs API keys Environment names Feature flags Passwords To00
EEEmma Engströminpentesting-dvwa.hashnode.dev·May 6 · 20 min readCryptography Problems in DVWAIntroduction Cryptography is used everywhere in modern applications to protect sensitive data such as passwords, session tokens, and personal information. Strong cryptographic algorithms are essential00
JLJeremy Longshoreinjeremylongshore.hashnode.dev·May 2 · 26 min readPropagation Day: When the CLAUDE.md Spec Becomes the Migration Plan\nOn April 30, three patterns that had been written into ~/.claude/CLAUDE.md weeks or months earlier as "TO-DO: propagate to all repos, then delete this section" all reached critical mass on the same day. The bd-sync three-layer mirror got its first re...00
HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·Apr 25 · 4 min readSecrets in Kubernetes Explained Simply As I continued my CKAD preparation, I reached a critical topic: How do we securely store sensitive data like passwords in Kubernetes? Earlier, we saw ConfigMaps for configuration. But what about con00
RGRama Grandhiindevopswithkube.hashnode.dev·Apr 5 · 4 min readLet's Master Kubernetes Namespaces, Secrets, and ConfigMaps 🔐Namespaces Have u ever wondered we are creating all the objects in the kkuberntes what if we need to crrate two exact deplohyments no we cant create right but we have dev , test ,prod env we need to c00
NVNaveenKumar VRinclaybrainer.com·Apr 1 · 8 min read🔐 Kubernetes - SecretsWe’ve already seen how to use ConfigMaps to pass non-sensitive data like configs and files to Pods. If you missed that, you can check it out here. But now comes the real question: What about sensitiv00