Red Hat OpenShift Administration II: Configuring a Production Cluster (DO280) Quiz Questions and Answers
Answer :
Control plane nodes first, then worker nodes
Explanation :
Updating the control plane nodes before worker nodes ensures that the critical components of the cluster are stable before the rest of the infrastructure is updated, providing consistency in cluster administration.---
To understand and verify the impact on pod communication and service reachability.
Explanation :
Testing NetworkPolicies in a staging environment helps in understanding their impact on pod communication, verifying that necessary service reachability is maintained while applying desired access restrictions.
To define and manage resources such as pods, services, and deployments declaratively.
Explanation :
Resource manifests define the desired state of OpenShift resources and allow for declarative management, ensuring consistency and predictability in resource allocation across the cluster.
Labels are important for resource tracking and grouping in OpenShift, allowing administrators to organize resources, simplify resource management tasks, and optimize deploy operations.
Setting quotas that exceed physical resources can lead to contention, causing applications to compete for limited resources, potentially leading to system instability and downtime.
To track changes and ensure recoverability of deployment configurations
Explanation :
Version controlling Helm Charts facilitates tracking of any changes made to the deployment configurations, ensuring recoverability and simplifying rollback procedures if necessary.
To simplify the security management by reducing redundancy
Explanation :
Modifying existing SCCs can help reduce complexity by eliminating redundancy in configurations while still providing necessary permissions, leading to more efficient management.
The pod will not be scheduled until limits are adjusted.
Explanation :
If a pod's resource requests exceed the defined LimitRanges, it will not be scheduled until its requests conform to the set limits, ensuring resource fairness and availability.
The command 'oc expose deployment/myapp --type=LoadBalancer' is used in OpenShift to create a Load Balancer Service that exposes deployment-based pods to external traffic.
Test workloads in a staging environment that mirrors production.
Explanation :
Testing workloads in a controlled environment helps identify compatibility issues with the new OpenShift version, allowing for adjustments before the production upgrade.