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