DevOps · Flashcard

Which template type schedules a container running an image you name?

  • Acontainer — it schedules a single container, the most common template type
  • Bscript — it wraps a container and adds an inline source body to execute
  • Cresource — it performs get, create, apply or delete on cluster resources
  • Dsuspend — it pauses execution for a duration or until someone resumes it

Why this is the answer

container is described as perhaps the most common template type: it schedules a Container. The other three are real template types doing other jobs — script is a convenience wrapper around container that adds a source field, resource operates on Kubernetes objects through the API rather than running your image, and suspend runs nothing at all, it just holds the workflow.

Official docs
Study in Gnoseed →