Kubernetes is a powerful orchestration platform for managing containerized applications across a cluster of machines. The two statements that are true about Kubernetes capabilities are:
Auto Scaling Pods Up and Down (C):
Kubernetes can automatically scale the number of pods up or down based on the resource usage and demand. This is done using the Horizontal Pod Autoscaler, which adjusts the number of pod replicas based on CPU utilization or other select metrics.
Orchestrate Pods and Their Dependencies (D):
Kubernetes orchestrates the deployment, scaling, and operations of application containers across clusters of hosts. It manages the scheduling of pods, ensuring that containerized applications are running as desired and can handle the orchestration of dependencies between containers.
References:
Kubernetes Documentation on Horizontal Pod Autoscaler
Kubernetes Documentation on Pod Lifecycle
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit