Agent configuration syntax reference
This topic provides reference information for the HCP Waypoint agent configuration syntax.
Introduction
HCP Waypoint agents let you execute actions inside private environments. Refer to create and manage agents for more information.
Configuration model
The following list outlines field hierarchy, language-specific data types, and requirements for the HCP Waypoint agent configuration.
group
: map
Complete configuration
Specification
This section provides details about the HCP Waypoint agent configuration syntax.
group
A group
block can contain multiple action
blocks.
Field | Description | Type | Required |
---|---|---|---|
action | An action block defines an action that HCP Waypoint can run. You can define multiple action blocks. | map | required |
action
An action
block must contain only one of the following: a single run
block, a single http
block, or one or more operation
blocks.
Field | Description | Type | Required |
---|---|---|---|
run | A run block defines a command or script that the action executes. | map | |
http | An http block defines an action that sends an HTTP GET request. | map | |
operation | An operation block defines a single run or http block. | map |
run
A run
block defines a command or script that the action executes.
Field | Description | Type | Required |
---|---|---|---|
command | The command to execute, which can be a command or a script. | string or array of strings | required |
docker | If you include a docker block, the agent runs the command in a Docker container. | map |
The command
field may be a string or an array of strings. As an array of strings, the agent executes the command
field as a single command. The follow example defines an action that runs the command echo hello world
:
docker
If you define an optional docker
block, the agent runs the command in the run
block inside a docker container.
Field | Description | Type | Required |
---|---|---|---|
image | Container image | string | required |
http
An http
block defines an HTTP GET request for the action to make.
Field | Description | Type | Required |
---|---|---|---|
url | The URL the action sends the HTTP GET request to. | string | required |
operation
An operation
block can only contain a single run
or http
block.
Field | Description | Type | Required |
---|---|---|---|
run | A run block defines a command or script that the action executes. | map | |
http | An http block defines an action that sends an HTTP GET request. | map | |
status | A status block sends log information to HCP Waypoint. | map |
status
A status
block sends log information to HCP Waypoint. HCP Waypoint records and displays this information in an action's run output summary.
Field | Description | Type | Required |
---|---|---|---|
message | A log message. | string | required |
values | A key-value map of values to include with the log message. | map | |
status | Sets the status of the action, and must be either: running , complete , or error . | string | required |
Example
The following is an example configuration file for an agent group called my-agent-group
and it defines two actions:
- The
promote-to-staging
action runs a local script namedpromote.sh
. - The
rollback
action sends an HTTP GET request to the address defined in theurl
parameter.