Overview

last updated: 2024-05-19

This service provides the capility to host a Container. In general we provide two types of service within our offer.

  1. Jobs
  2. Services

DownToZero Containers

Jobs

Jobs are asynchronous scheduled containers. Those container are always run to completion. The schedule can be adjusted depnding on the workload scenario.

Good examples for an asynchronous Jobs are:

  • CronJobs that run once a day
  • CI/CD pipelines that check for vulnerabilities daily
  • Checking RSS feed at least once a day

Services

Services are synchronous schedules containers that are handling request/reply traffic. Those containers are waiting for a trigger action to occur and end with a response to this action.

Good examples for Services are:

  • Website hosting
  • API endpoints
  • REST interfaces