Skip to main content

151 posts tagged with "DevOps"

DevOps practices, CI/CD, and automation

View All Tags

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.

Linux Networking Commands Every Engineer Should Know

· 7 min read
Goel Academy
DevOps & Cloud Learning Hub

Your app can't connect to the database. Latency is spiking. DNS resolution is failing. A microservice can't reach its dependency. Networking issues are behind the majority of production incidents, and if you can't debug them from the command line, you're flying blind. Let's fix that.

Kubernetes Namespaces — Multi-Tenancy and Resource Isolation

· 6 min read
Goel Academy
DevOps & Cloud Learning Hub

Your cluster has three teams deploying apps. The frontend team accidentally deletes the backend team's ConfigMap because everything is in the default namespace. The ML team's GPU-hungry job starves everyone else of resources. Sound familiar? Namespaces fix this by giving each team their own isolated sandbox with enforced resource limits.