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?
A. Recreate
B. Rolling update
C. Ramped slow rollout
D. Best effort controlled rollout
- What types of resources can you use to expose containers externally?
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?- What kind of workloads can you run with ingresses?
A. HTTP
B. TCP
C. FTP
D. SMTP
- What resources would you define for dynamic volume provisioning?
A.
StorageClass
B.
PersistentVolumeClaim
C.
PersistentVolume
D.
StatefulSet
- To make your horizontal scaling more meaningful, what parameters should you use to scale your Pods?
A. CPU
B. Memory
C. External metrics, such as...