Skip to main content

34 posts tagged with "Security"

Cloud and infrastructure security

View All Tags

Kubernetes RBAC — Who Can Do What in Your Cluster

· 6 min read
Goel Academy
DevOps & Cloud Learning Hub

Your cluster is running in production. Three teams share it. A junior developer accidentally deletes a Deployment in the production namespace. Sound familiar? This is what happens when everyone has cluster-admin. RBAC exists to make sure every user and every service account has exactly the permissions they need — and nothing more.

ConfigMaps and Secrets — Manage Configuration Without Rebuilding Images

· 6 min read
Goel Academy
DevOps & Cloud Learning Hub

Your app needs a database URL in dev, a different one in staging, and yet another in production. You could bake each URL into a separate Docker image, but then you would need three images for the same code. ConfigMaps and Secrets let you inject configuration at deploy time, so one image works everywhere. Here is how to use them properly.