Pular para o conteúdo principal

Instance Types

Instance types define the CPU and memory resource limits for compute instances.

NameCPUMemory
nano0.5 cores256 MB
micro1 core512 MB
small1 core1 GB
medium2 cores2 GB
large4 cores4 GB
xlarge8 cores8 GB

List available types via CLI:

nimbus compute instance-types

The instance type is set with --type when creating a compute instance:

nimbus compute run --name web --swarm SWARM_ID --image nginx --type medium

In manifests, use the type field:

compute:
web:
swarm: prod
image: nginx
type: medium