Questions
- A Kubernetes Deployment deletes an old
ReplicaSet
resource when the image is updated. (True/False) - What are the primary deployment strategies supported by Kubernetes? (Choose two)
A. Recreate
B. Rolling update
C. Ramped slow rollout
D. Best-effort controlled rollout
- Which types of resources can you use to expose containers externally? (Choose three)
A.
ClusterIP Service
B.
NodePort Service
C.
LoadBalancer Service
D.
Ingress
- It is a best practice to start with a
ClusterIP
Service and change the Service type later if needed. (True/False) Deployment
resources are suitable for stateful workloads. (True/False)- Which kinds of workloads can you run with Ingresses?
A. HTTP
B. TCP
C. FTP
D. SMTP
- Which resources would you define for dynamic volume provisioning? (Choose two)
A.
StorageClass
B.
PersistentVolumeClaim
C.
PersistentVolume
D.
StatefulSet
- To make your horizontal scaling more meaningful, what parameters should you use to scale your pods? (Choose three)
A. CPU...