RedHat
Kubernetes 3 questions
- #1CRD Schema Validation
You manage a CustomResourceDefinition (CRD) for "Widgets". Currently, the API allows users to create widgets with missing or invalid configuration, which causes the controller to crash.
- #2CronJob Schedule Misconfiguration
A CronJob named
cleanupin theopsnamespace is failing to trigger as expected. It has an incorrect schedule, relies on the default timezone (which may not match the server), and retains too many completed jobs, cluttering the history. - #3Job Failure
A Job manifest at
/home/interview/fail-job.yamlis failing with a non-zero exit status. The Job has limited retries configured.
Linux 3 questions
- #4Analyzing Log Partition Usage
Log rotation has stopped working correctly, and you suspect that
/var/logmight be mounted on a different filesystem with limited space or incorrect mount options. - #5CPU Resource Management Priority
During peak traffic hours, a background
data-processingjob that is started by userdevopsis consuming too much CPU and slowing down user-facing services. Stopping it isn't an option because it would interrupt ongoing workflows, but you need to limit its CPU usage temporarily. - #6Using Unmounted Partitions
The server has unmounted partitions that are not being used and could be utilized for additional storage.