1. Which command you have to use to create new resources on an existing Kubernetes cluster?
    1. run pods
    2. eksctl
    3. kubectl
    4. aws eks run pods
  2. Which command you can use to manage Kubernetes cluster on AWS?
    1. kubectl
    2. aws eks create-cluster
    3. create-cluster.sh
    4. eksctl
  3. Which command you need to use to run a new pod on an Kubernetes cluster?
    1. eksctl apply
    2. kubectl apply
    3. aws eks run pods apply
    4. kubectl run-pods
  4. You need to run 10 pods, what is a recommended way to do that?
    1. Generate 10 yaml manifests with pod definitions, each with unique pod name
    2. Use Service
    3. Use Deployment
    4. Use ReplicaSet
  5. When would you use Service?
    1. When you want to have a single endpoint for pods with a specific label
    2. When you need to hide pods
    3. When you need to access pods from the outside of the cluster
    4. When you use Deployment