devops-exercises/topics/kubernetes/killing_containers.md
abregman 99c4e02ecf Rename exercises dir
Name it instead "topics" so it won't be
strange if some topics included "exercises" directory.
2022-08-02 01:53:56 +03:00

376 B

"Killing" Containers

  1. Run Pod with a web service (e.g. httpd)
  2. Verify the web service is running with the ps command
  3. Check how many restarts the pod has performed
  4. Kill the web service process
  5. Check how many restarts the pod has performed
  6. Verify again the web service is running

After you complete the exercise

  • Why did the "RESTARTS" count raised?