Stack Definition Language Specification

Final

Summary

Stack Definition Language

Specification

Deployment services, datacenters, pricing, etc.. are described by a YAML configuration file. Configuration files may end in .yml or .yaml.

A complete deployment has the following sections:

A full example deployment configuration can be found here.

version

Indicates version of Akash configuration file. Currently only "1.0" is accepted.

services

The top-level services entry contains a map of workloads to be ran on the Akash deployment. Each key is a service name; values are a map containing the following keys:

NameRequiredMeaning
imageYesDocker image of the container
depends-onNoList of services which must be brought up before the current service
argsNoArguments to use when executing the container
envNoEnvironment variables to set in running container
exposeNoEntities allowed to connec to to the services. See services.expose.

services.expose

expose is a list describing what can connect to the service. Each entry is a map containing one or more of the following fields:

NameRequiredMeaning
portYesContainer port to expose
asNoPort number to expose the container port as
acceptNoList of hosts to accept connections for
protoNoProtocol type (tcp,http, or https)
toNoList of entities allowed to connect. See services.expose.to

The port value governs the default proto value as follows:

portproto default
80http
443https
all otherstcp

services.expose.to

expose.to is a list of clients to accept connections from. Each item is a map with one or more of the following entries:

NameValueDefaultDescription
serviceA service in this deploymentAllow the given service to connect
globaltrue or falsefalseIf true, allow connections from outside of the datacenter

If no service is given and global is true, any client can connect from anywhere (web servers typically want this).

If a service name is given and global is false, only the services in the current datacenter can connect. If a service name is given and global is true, services in other datacenters for this deployment can connect.

If global is false then a service name must be given.

profiles

The profiles section contains named compute and placement profiles to be used in the deployment.

profiles.compute

profiles.compute is map of named compute profiles. Each profile specifies compute resources to be leased for each service instance uses uses the profile.

Example:

This defines a profile named web having resource requirements of 2 vCPUs, 2 gigabytes of memory, and 5 gigabytes of storage space available.

web:
cpu: 2
memory: "2Gi"
storage: "5Gi"

cpu units represent a vCPU share and can be fractional. When no suffix is present the value represents a fraction of a whole CPU share. With a m suffix, the value represnts the number of milli-CPU shares (1/1000 of a CPU share).

Example:

ValueCPU-Share
11
0.51/2
"100m"1/10
"50m"1/20

memory, storage units are described in bytes. The following suffixes are allowed for simplification:

SuffixValue
k1000
Ki1024
M1000^2
Mi1024^2
G1000^3
Gi1024^3
T1000^4
Ti1024^4
P1000^5
Pi1024^5
E1000^6
Ei1024^6

profiles.placement

profiles.placement is map of named datacenter profiles. Each profile specifies required datacenter attributes and pricing configuration for each compute profile that will be used within the datacenter.

Example:

westcoast:
attributes:
region: us-west
pricing:
web: 8u
db: 100u

This defines a profile named westcoast having required attributes {region="us-west"}, and with a max price for the web and db compute profiles of 8 and 15 micro (10^-6) tokens per block, respectively.

Pricing may be expressed in decimal or scientific notation for Akash units, or may be suffixed with mu,µ, or u to represent micro Akash.

Examples:

ValueMicro Akash Tokens
11000000
1e-4100
20u20

deployment

The deployment section defines how to deploy the services. It is a mapping of service name to deployment configuration.

Each service to be deployed has an entry in the deployment. This entry is maps datacenter profiles to compute profiles to create a final desired configuration for the resources required for the service.

Example:

web:
westcoast:
profile: web
count: 20

This says that the 20 instances of the web service should be deployed to a datacenter matching the westcoast datacenter profile. Each instance will have the resources defined in the web compute profile available to it.

All content herein is licensed under Apache 2.0.

Completion date: 7/30/2018

Created: 3/18/2018

Last Updated:

Category: Interface

Status: Final

Authors:

Adam Bozanich

Resolution: Link

Experience the Supercloud.