You are a developer, and your container jobs are failing on a self-hosted runner.
Which requirements must you check to ensure that the self-hosted runner is properly configured? (Choose two.)
- The self-hosted runner is running a Linux operating system.
- The self-hosted runner is running a Windows operating system.
- Docker is installed on the self-hosted runner.
- Kubernetes is installed on the self-hosted runner.
- The service status of Kubernetes is "active".
Answer(s): A,C
Explanation:
While Docker can run on various operating systems, Linux is often the most common and preferred OS for containerized workloads. Docker works well on Linux and is a widely-used platform for running containers.
For container jobs to run on a self-hosted runner, Docker must be installed and properly configured on the runner. Docker is required to build and run containerized workloads in a GitHub Actions workflow.
Reveal Solution Next Question