Static podsStatic pods ———> pods created by kubelet agent on worker nodes Assume you have only one worker node on cluster and no control plane and you need to create pods. These pods are created by kubelet agent. How to path configuration files for pods to kub...Mar 9, 2025·1 min read
Labels && Selectors && annotationsLabels —————> used for grouping objects together unique objects. Dictionary of items How to identify labels ? on metadata section on yaml file metadata: labels: key: value key1: value2 Selectors ——————→ filter objects How to use selector ? $ kubectl...Mar 7, 2025·1 min read
Manual-schedulingAs we know that kubernetes scheduler is responsible for selecting which node that pod is going to be running on. SoWhat if we need to restrict pod to be running on pod what we chose it [force pod to be running on specific pod] ? We have parameter cal...Mar 7, 2025·1 min read