Resource Restrictions in K8s Generally we have two kinds of controls requests: This represents minimum limit required limits: This represents maximum limit Resource Types CPU: 1000m => 1 cpu Memory Lets create a pod with container which requires minimum => 0.1 cpu and 64MB RAM max => 0.5 cpu and 256MB RAM apiVersion: v1 kind:… Continue reading DevOps Classroom notes 30/Jun/2026
DevOps Classroom notes 29/Jun/2026
Pods Pods will have different types of containers init containers: for initialization or checks main application(main car) side car containers ephemeral containers Pod life cycle Pod will first create init containers one by one once the init containers finish then the main car and side car containers are created in parallel A container generally when… Continue reading DevOps Classroom notes 29/Jun/2026
DevOps Classroom notes 27/Jun/2026
How to write manifest files ApiVersioning k8s api server exposes k8s Workloads as Resources K8s maintains api Versions for them K8s has api Versioning scheme Refer Here API Versioning: alpha: v1alpha beta: v1beta stable: v1 or v2 K8s groups multiple resources into api Groups apiVersion: <group>/<version> # if the group name is core write version… Continue reading DevOps Classroom notes 27/Jun/2026
