Enumeration RuntimeType

Runtime types are used to describe the type of a deployment or container

Enumeration Members

Enumeration Members

EPHEMERAL: "ephemeral"

Ephemeral deployments/containers are sort of fire and forget. Containers won't restart if they exit but they can still be terminated programatically.

PERSISTENT: "persistent"

Persistent deployments/containers will restart if they exit. They can also be started and stopped programmatically.

STATEFUL: "stateful"

Stateful deployments/containers can only run one container at a time, and will have a persistent volume attached.

Generated using TypeDoc