The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

CI/CD

Pipelines, deployment strategies and release safety.

TypeEverythingLearn1Questions24Drills3Blogs1News4
LevelAll levelsBeginner2Intermediate1

2 items at beginner level · all topics

  • DrillCerts·beginner·1 min+10 XP

    A Deployment with 4 replicas and no rollingUpdate settings is updated to a new image. What does Kubernetes guarantee about Pod counts during the rollout?

    maxUnavailable and maxSurge both default to 25%. With 4 replicas that allows one Pod unavailable and one extra Pod, so the count stays between 3 and 5.

    #Kubernetes#Deployment#Workloads#Rolling Update
  • DrillCerts·beginner·1 min+10 XP

    A monitoring agent must run exactly once on every node, including nodes added to the cluster next week. Which workload object fits, and why not the alternative?

    A DaemonSet places one Pod per eligible node and covers new nodes automatically. A Deployment counts replicas without caring which nodes they land on.

    #Kubernetes#DaemonSet#Workloads#Deployment