2021-02-27 01:14:08 +01:00
|
|
|
// This is the source of truth for the DESIRED STATE of the dagger command-line user interface (UI)
|
|
|
|
//
|
|
|
|
// - The CLI implementation is written manually, using this document as a spec. If you spot
|
|
|
|
// a discrepancy between the spec and implementation, please report it or even better,
|
|
|
|
// submit a patch to the implementation.
|
|
|
|
//
|
|
|
|
// - To propose changes to the UI, submit a patch to this spec. Patches to the CLI implementation
|
|
|
|
// which don't match the spec will be rejected.
|
|
|
|
//
|
|
|
|
// - It is OK to propose changes to the CLI spec before an implementation is ready. To speed up
|
|
|
|
// development, we tolerate a lag between the spec and implementation. This may change in the
|
|
|
|
// future once the project is more mature.
|
|
|
|
|
2021-03-22 20:46:58 +01:00
|
|
|
package spec
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"text/tabwriter"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Examples:
|
|
|
|
//
|
|
|
|
// cue eval --out text
|
|
|
|
// cue eval --out text -e '#Dagger.command.query.usage'
|
|
|
|
#Dagger.usage
|
|
|
|
|
|
|
|
#Dagger: #Command & {
|
|
|
|
|
|
|
|
name: "dagger"
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Write code to deploy your code"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
doc: """
|
2021-03-25 08:37:01 +01:00
|
|
|
Dagger works by running *controllers*: specialized programs each automating
|
|
|
|
the deployment of a particular application in a particular way.
|
2021-03-23 08:21:45 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
Multiple controllers can deploy the same application in different ways,
|
|
|
|
for example to deploy distinct production and staging environments.
|
2021-03-23 08:21:45 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
Technically speaking, a controller is a standalone program with its own code and data,
|
|
|
|
run by the Dagger platform.
|
|
|
|
|
|
|
|
Unlike traditional programs which strictly separate code and data,
|
|
|
|
Dagger merges them into a unified DAG (direct acyclic graph)
|
|
|
|
using a powerful declarative language called [CUE](https://cuelang.org).
|
|
|
|
Each node of the DAG represents a step of the controller's deployment plan.
|
|
|
|
|
|
|
|
Unlike traditional programs which run continuously, Dagger controllers are
|
|
|
|
*reactive*: their DAG is recomputed upon receiving a new input.
|
|
|
|
|
|
|
|
The Dagger platform natively supports [LLB](https://github.com/moby/buildkit) pipelines
|
|
|
|
pioneered by the Buildkit project.
|
|
|
|
This allows controllers to run sophisticated pipelines to ingest and process
|
|
|
|
artifacts such as source code, binaries, database exports, ML models, etc.
|
|
|
|
Best of all, LLB pipelines can securely build and run any docker/OCI container,
|
|
|
|
effectively allowing Dagger to be scriptable in any language.
|
2021-02-27 01:14:08 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
flag: {
|
2021-03-25 08:37:01 +01:00
|
|
|
"--deployment": {
|
|
|
|
alt: "-d"
|
|
|
|
description:
|
|
|
|
"""
|
|
|
|
Select a controller
|
|
|
|
|
|
|
|
If no controller is specified, dagger searches for controllers using the current
|
|
|
|
directory as input.
|
|
|
|
|
|
|
|
* If exactly one controller matches the search, it is selected.
|
|
|
|
* If there is more than one match, the user is prompted to select one.
|
|
|
|
* If there is no match, the command returns an error.
|
|
|
|
"""
|
2021-02-27 01:14:08 +01:00
|
|
|
arg: "NAME"
|
|
|
|
}
|
|
|
|
"--log-format": {
|
|
|
|
arg: "string"
|
|
|
|
description: "Log format (json, pretty). Defaults to json if the terminal is not a tty"
|
|
|
|
}
|
|
|
|
"--log-level": {
|
|
|
|
alt: "-l"
|
|
|
|
arg: "string"
|
|
|
|
description: "Log level"
|
|
|
|
default: "debug"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
command: {
|
|
|
|
new: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Create a new controller"
|
2021-02-27 01:14:08 +01:00
|
|
|
flag: {
|
|
|
|
"--name": {
|
|
|
|
alt: "-n"
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Specify a controller name"
|
2021-02-27 01:14:08 +01:00
|
|
|
default: "name of current directory"
|
|
|
|
}
|
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
"--plan-dir": description: "Load deployment plan from a local directory"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
"--plan-git": description: "Load deployment plan from a git repository"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
"--plan-package": description: "Load deployment plan from a cue package"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
"--plan-file": description: "Load deployment plan from a cue or json file"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
"--up": {
|
|
|
|
alt: "-u"
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Bring the controller online"
|
2021-02-27 01:14:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
"--setup": {
|
|
|
|
arg: "no|yes|auto"
|
|
|
|
description: "Specify whether to prompt user for initial setup"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
list: description: "List available controllers"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
query: {
|
|
|
|
arg: "[EXPR] [flags]"
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Query the contents of a controller"
|
2021-02-27 01:14:08 +01:00
|
|
|
doc:
|
|
|
|
"""
|
2021-03-25 08:37:01 +01:00
|
|
|
EXPR may be any valid CUE expression. The expression is evaluated against the controller contents. The controller is not changed.
|
2021-02-27 01:14:08 +01:00
|
|
|
Examples:
|
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
# Print the entire deployment plan with inputs merged in (but no outputs)
|
|
|
|
$ dagger query --no-output
|
2021-02-27 01:14:08 +01:00
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
# Print the deployment plan, inputs and outputs of a particular step
|
2021-02-27 01:14:08 +01:00
|
|
|
$ dagger query www.build
|
|
|
|
|
|
|
|
# Print the URL of a deployed service
|
|
|
|
$ dagger query api.url
|
|
|
|
|
|
|
|
# Export environment variables from a deployment
|
|
|
|
$ dagger query -f json api.environment
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
flag: {
|
|
|
|
|
|
|
|
// FIXME: confusing flag choice?
|
|
|
|
// Use --revision or --change or --change-id instead?
|
|
|
|
"--version": {
|
|
|
|
alt: "-v"
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Query a specific version of the controller"
|
2021-02-27 01:14:08 +01:00
|
|
|
default: "latest"
|
|
|
|
}
|
|
|
|
|
|
|
|
"--format": {
|
|
|
|
alt: "-f"
|
|
|
|
description: "Output format"
|
|
|
|
arg: "json|yaml|cue|text|env"
|
|
|
|
}
|
|
|
|
|
2021-03-23 08:37:31 +01:00
|
|
|
"--no-input": {
|
|
|
|
alt: "-I"
|
|
|
|
description: "Exclude inputs from query"
|
|
|
|
}
|
|
|
|
"--no-output": {
|
|
|
|
alt: "-O"
|
|
|
|
description: "Exclude outputs from query"
|
|
|
|
}
|
|
|
|
"--no-plan": {
|
|
|
|
alt: "-L"
|
|
|
|
description: "Exclude deployment plan from query"
|
2021-02-27 01:14:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
up: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Bring a controller online with latest deployment plan and inputs"
|
2021-02-27 01:14:08 +01:00
|
|
|
flag: "--no-cache": description: "Disable all run cache"
|
|
|
|
}
|
|
|
|
|
|
|
|
down: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Take a controller offline (WARNING: may destroy infrastructure)"
|
2021-02-27 01:14:08 +01:00
|
|
|
flag: "--no-cache": description: "Disable all run cache"
|
|
|
|
}
|
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
history: description: "List past changes to a controller"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
2021-03-23 08:21:45 +01:00
|
|
|
delete: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Delete a controller after taking it offline (WARNING: may destroy infrastructure)"
|
2021-02-27 01:14:08 +01:00
|
|
|
}
|
|
|
|
|
2021-03-25 08:37:01 +01:00
|
|
|
plan: {
|
|
|
|
description: "Manage a controller's deployment plan"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
command: {
|
|
|
|
package: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Load plan from a cue package"
|
2021-02-27 01:14:08 +01:00
|
|
|
arg: "PKG"
|
|
|
|
doc:
|
|
|
|
"""
|
|
|
|
Examples:
|
2021-03-25 08:37:01 +01:00
|
|
|
dagger plan package dagger.io/templates/jamstack
|
2021-02-27 01:14:08 +01:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
|
|
|
|
dir: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Load plan from a local directory"
|
2021-02-27 01:14:08 +01:00
|
|
|
arg: "PATH"
|
|
|
|
doc:
|
|
|
|
"""
|
|
|
|
Examples:
|
2021-03-25 08:37:01 +01:00
|
|
|
dagger plan dir ./infra/prod
|
2021-02-27 01:14:08 +01:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
|
|
|
|
git: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Load plan from a git repository"
|
2021-02-27 01:14:08 +01:00
|
|
|
arg: "REMOTE REF [SUBDIR]"
|
|
|
|
doc:
|
|
|
|
"""
|
|
|
|
Examples:
|
2021-03-25 08:37:01 +01:00
|
|
|
dagger plan git https://github.com/dagger/dagger main examples/simple
|
2021-02-27 01:14:08 +01:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
|
|
|
|
file: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Load plan from a cue file"
|
2021-02-27 01:14:08 +01:00
|
|
|
arg: "PATH|-"
|
|
|
|
doc:
|
|
|
|
"""
|
|
|
|
Examples:
|
2021-03-25 08:37:01 +01:00
|
|
|
dagger plan file ./myapp-staging.cue
|
|
|
|
echo 'message: "hello, \(name)!", name: string | *"world"' | dagger plan file -
|
2021-02-27 01:14:08 +01:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Manage a controller's inputs"
|
2021-02-27 01:14:08 +01:00
|
|
|
|
|
|
|
command: {
|
|
|
|
// FIXME: details of individual input commands
|
|
|
|
dir: {description: "Add a local directory as input artifact"}
|
|
|
|
git: description: "Add a git repository as input artifact"
|
|
|
|
container: description: "Add a container image as input artifact"
|
|
|
|
value: description: "Add an input value"
|
|
|
|
secret: description: "Add an encrypted input secret"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output: {
|
2021-03-25 08:37:01 +01:00
|
|
|
description: "Manage a controller's outputs"
|
2021-02-27 01:14:08 +01:00
|
|
|
// FIXME: bind output values or artifacts
|
|
|
|
// to local dir or file
|
2021-03-25 08:37:01 +01:00
|
|
|
// BONUS: bind a controller output to another controller's input?
|
2021-02-27 01:14:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
login: description: "Login to Dagger Cloud"
|
|
|
|
|
|
|
|
logout: description: "Logout from Dagger Cloud"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#Command: {
|
|
|
|
// Command name
|
|
|
|
name: string
|
|
|
|
|
|
|
|
description: string
|
|
|
|
doc: string | *""
|
|
|
|
|
|
|
|
// Flags
|
|
|
|
flag: [fl=string]: #Flag & {name: fl}
|
|
|
|
flag: "--help": {
|
|
|
|
alt: "-h"
|
|
|
|
description: "help for \(name)"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sub-commands
|
|
|
|
command: [cmd=string]: #Command & {
|
|
|
|
name: cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
arg: string | *"[command]"
|
|
|
|
|
|
|
|
usage: {
|
|
|
|
"""
|
|
|
|
\(description)
|
|
|
|
\(doc)
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
\(name) \(arg)
|
|
|
|
|
|
|
|
Available commands:
|
|
|
|
\(tabwriter.Write(#commands))
|
|
|
|
|
|
|
|
Flags:
|
|
|
|
\(tabwriter.Write(#flags))
|
|
|
|
"""
|
|
|
|
|
|
|
|
#commands: [ for name, cmd in command {
|
|
|
|
"""
|
|
|
|
\(name)\t\(cmd.description)
|
|
|
|
"""
|
|
|
|
}]
|
|
|
|
#flags: [ for name, fl in flag {
|
|
|
|
"""
|
|
|
|
\(name), \(fl.alt)\t\(fl.description)
|
|
|
|
"""
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#Flag: {
|
|
|
|
name: string
|
|
|
|
alt: string | *""
|
|
|
|
description: string
|
|
|
|
default?: string
|
|
|
|
arg?: string
|
|
|
|
example?: string
|
|
|
|
}
|