Question 21

Create a pod as follows:
* Name:mongo
* Using Image:mongo
* In anew Kubernetes namespacenamed:my-website

Question 22

Create a PersistentVolumeClaim of at least 3Gi storage and access mode ReadWriteOnce and verify status is Bound
  • Question 23

    Watch the job that runs 10 times one by one and verify 10 pods are created and delete those after it's completed

    Question 24

    Get list of all pods in all namespaces and write it to file "/opt/pods-list.yaml"

    Question 25

    Create a pod with init container which create a file "test.txt"
    in "workdir" directory. Main container should check a file
    "test.txt" exists and execute sleep 9999 if the file exists.