Runtime Commands
runta run
Section titled “runta run”Create a new runtime.
runta run [OPTIONS] --cpus <N> --memory <MIB>| Option | Description |
|---|---|
--name <NAME> | Runtime name. If omitted, runta generates a random name. |
--cpus <N> | Number of vCPUs. Required. |
--memory <MIB> | Memory in MiB. Required. |
-p, --publish <SPEC> | Repeatable ingress rule in <port>/http or <port>/https form. |
--idle-timeout <SECS> | Suspend the runtime after this many seconds without observed activity. Omit to disable. |
runta run --name demo --cpus 2 --memory 2048runta run --name web --cpus 2 --memory 2048 --publish 8080/httpsrunta run --name idle-web --cpus 1 --memory 512 --publish 8080/https --idle-timeout 300runta ps
Section titled “runta ps”List runtimes.
runta ps [OPTIONS]| Option | Description |
|---|---|
-a, --all | Show all runtimes, including unreachable ones. |
runta inspect
Section titled “runta inspect”Show detailed information for a runtime.
runta inspect <VM_NAME>Lifecycle Commands
Section titled “Lifecycle Commands”runta shutdown <VM_NAME>runta boot <VM_NAME>runta pause <VM_NAME>runta resume <VM_NAME>runta rm <VM_NAMES>...runta resize
Section titled “runta resize”Resize runtime memory.
runta resize --memory <MIB> <VM_NAME>| Option | Description |
|---|---|
--memory <MIB> | New memory size in MiB. Required. |