README
¶
SimploTask - SPOT
SimploTask (aka spot
) is a powerful and easy-to-use tool for effortless deployment and configuration management. It allows users to define a playbook with the list of tasks and targets, where each task consists of a series of commands that can be executed on remote hosts concurrently. SimploTask supports running scripts, copying files, syncing directories, and deleting files or directories, as well as custom inventory files or inventory URLs.

Features
- Define tasks with a list of commands.
- Support for remote hosts specified directly or through inventory files/URLs.
- Everything can be defined in a simple YAML file.
- Run scripts on remote hosts.
- Built-in commands: copy, sync, delete and wait.
- Concurrent execution of task on multiple hosts.
- Ability to wait for a specific condition before executing the next command.
- Customizable environment variables.
- Ability to override list of destination hosts, ssh username and ssh key file.
- Skip or execute only specific commands.
- Catch errors and execute a command hook on the local host.
- Debug mode to print out the commands to be executed, output of the commands, and all the other details.
- A single binary with no dependencies.
Getting Started
- Install SimploTask by download the latest release from the Releases page.
- Create a configuration file, as shown in the example below, and save it as
spot.yml
. - Run SimploTask using the following command:
spot
. This will execute all the tasks defined in the defaultspot.yml
file for thedefault
target with a concurrency of 1. - To execute a specific task, use the
-t
flag:spot -t deploy-things
. This will execute only thedeploy-things
task. - To execute a specific task for a specific target, use the
-t
and-d
flags:spot -t deploy-things -d prod
. This will execute only thedeploy-things
task for theprod
target.
Options
SimploTask supports the following command-line options:
-f
,--file=
: Specifies the playbook file to be used. Defaults tospot.yml
. You can also set the environment variable$SPOT_FILE
to define the playbook file path.t
,--task=
: Specifies the task name to execute. The task should be defined in the playbook file. If not specified all the tasks will be executed.-d
,--target=
: Specifies the target name to use for the task execution. The target should be defined in the playbook file and can represent remote hosts, inventory files, or inventory URLs. If not specified thedefault
target will be used. User can pass a host name or IP instead of the target name for a quick override. Providing the-d
,--target
flag multiple times with different targets sets multiple destination targets or multiple hosts, e.g.,-d prod -d dev
or-d example1.com -d example2.com
.-c
,--concurrent=
: Sets the number of concurrent hosts to execute tasks. Defaults to1
, which means hosts will be handled sequentially.-h, --host=
: Specifies the destination host(s) for the task execution. Overrides the host(s) defined in the playbook file for the specified target. Providing the-h
flag multiple times with different hosts names or ips sets multiple destination hosts, e.g.,-h example1.com -h example2.com
--inventory-file=
: Specifies the inventory file to use for the task execution. Overrides the inventory file defined in the playbook file.--inventory-url=
: Specifies the inventory HTTP URL to use for the task execution. Overrides the inventory URL defined in the playbook file.-u
,--user=
: Specifies the SSH user to use when connecting to remote hosts. Overrides the user defined in the playbook file .-k
,--key=
: Specifies the SSH key to use when connecting to remote hosts. Overrides the key defined in the playbook file.-s
,--skip=
: Skips the specified commands during the task execution. Providing the-s
flag multiple times with different command names skips multiple commands.-o
,--only=
: Runs only the specified commands during the task execution. Providing the-o
flag multiple times with different command names runs only multiple commands.-e
,--env=
: Sets the environment variables to be used during the task execution. Providing the-e
flag multiple times with different environment variables sets multiple environment variables, e.g.,-e VAR1=VALUE1 -e VAR2=VALUE2
.-v
,--verbose
: Enables verbose mode, providing more detailed output and error messages during the task execution.--dbg
: Enables debug mode, providing even more detailed output and error messages during the task execution as well as diagnostic messages.-h
,--help
: Displays the help message, listing all available command-line options.
Example playbook
user: umputun
ssh_key: keys/id_rsa
# list of targets, i.e. hosts, inventory files or inventory URLs
targets:
prod:
hosts: [{host: "h1.example.com", user: "user2"}, {"h2.example.com", port: 2222}]
staging:
inventory_file: {location: "testdata/inventory", groups: ["staging"]}
dev:
inventory_url: {location: "http://localhost:8080/inventory", groups: ["dev"]}
dev_and_staging:
inventory_file: {location: "testdata/inventory"}
# list of tasks, i.e. commands to execute
tasks:
deploy-things:
on_error: "curl -s localhost:8080/error?msg={SPOT_ERROR}" # call hook on error
commands:
- name: wait
script: sleep 5s
- name: copy configuration
copy: {"src": "testdata/conf.yml", "dst": "/tmp/conf.yml", "mkdir": true}
- name: sync things
sync: {"src": "testdata", "dst": "/tmp/things"}
- name: some command
script: |
ls -laR /tmp
du -hcs /srv
cat /tmp/conf.yml
echo all good, 123
- name: delete things
delete: {"path": "/tmp/things", "recur": true}
- name: show content
script: ls -laR /tmp
docker:
commands:
- name: docker pull and start
script: |
docker pull umputun/remark42:latest
docker stop remark42 || true
docker rm remark42 || true
docker run -d --name remark42 -p 8080:8080 umputun/remark42:latest
env: {FOO: bar, BAR: qux} # set environment variables for the command
- wait: {cmd: "curl -s localhost:8080/health", timeout: "10s", interval: "1s"} # wait for health check to pass
Task details
Each task consists of a list of commands that will be executed on the remote host(s). The task can also define the following optional fields:
on_error
: specifies the command to execute on the local host (the one running thespot
command) in case of an error. The command can use the{SPOT_ERROR}
variable to access the last error message. Example:on_error: "curl -s localhost:8080/error?msg={SPOT_ERROR}"
user
: specifies the SSH user to use when connecting to remote hosts. Overrides the user defined in the top section of playbook file for the specified task.ssh_key
: specifies the SSH key to use when connecting to remote hosts. Overrides the key defined in the top section of playbook file for the specified task.
Command Types
SimploTask supports the following command types:
script
: can be any valid shell script. The script will be executed on the remote host(s) using SSH, inside a shell.copy
: copies a file from the local machine to the remote host(s). Example:copy: {"src": "testdata/conf.yml", "dst": "/tmp/conf.yml", "mkdir": true}
. Ifmkdir
is set totrue
the command will create the destination directory if it doesn't exist, same asmkdir -p
in bash.sync
: syncs directory from the local machine to the remote host(s). Optionally supports deleting files on the remote host(s) that don't exist locally. Example:sync: {"src": "testdata", "dst": "/tmp/things", "delete": true}
delete
: deletes a file or directory on the remote host(s), optionally can remove recursively. Example:delete: {"path": "/tmp/things", "recur": true}
wait
: waits for the specified command to finish on the remote host(s) with 0 error code. This command is useful when you need to wait for a service to start before executing the next command. Allows to specify the timeout as well as check interval. Example:wait: {"cmd": "curl -s --fail localhost:8080", "timeout": "30s", "interval": "1s"}
Command options
Each command type supports the following options:
ignore_errors
: if set totrue
the command will not fail the task in case of an error.no_auto
: if set totrue
the command will not be executed automatically, but can be executed manually using the--only
flag.local
: if set totrue
the command will be executed on the local host (the one running thespot
command) instead of the remote host(s).
example setting ignore_errors
and no_auto
options:
commands:
- name: wait
script: sleep 5s
options: {ignore_errors: true, no_auto: true}
Script Execution
SimploTask allows executing scripts on remote hosts, or locally if options.local
is set to true. Scripts can be executed in two different ways, depending on whether they are single-line or multi-line scripts.
Single-line Script Execution
For single-line scripts, they are executed directly inside the shell with the optional parameters set to the command line. For example:
commands:
- name: some command
script: ls -laR /tmp
env: {FOO: bar, BAR: qux}
this will be executed as: FOO='bar' BAR='qux'ls -laR /tmp FOO=bar BAR=qux
inside the shell on the remote host(s), i.e. sh -c "FOO='bar' BAR='qux'ls -laR /tmp FOO=bar BAR=qux"
.
Multi-line Script Execution
For multi-line scripts, SimploTask creates a temporary script containing all the commands, uploads it to the remote host (or keeps it locally if options.local
is set to true), and executes the script. Environment variables are set inside the script, allowing you to create complex scripts that include setting variables, conditionals, loops, and other advanced functionality. Scripts run with "set -e" to fail on error. For example:
commands:
- name: multi_line_script
script: |
touch /tmp/file1
echo "Hello World" > /tmp/file2
echo "Executing loop..."
for i in {1..5}; do
echo "Iteration $i"
done
echo "All done! $FOO $BAR
env: {FOO: bar, BAR: qux}
this will create a temporary script on the remote host(s) with the following content and execute it:
#!/bin/sh
set -e
export FOO='bar'
export BAR='qux'
touch /tmp/file1
echo "Hello World" > /tmp/file2
echo "Executing loop..."
for i in {1..5}; do
echo "Iteration $i"
done
echo "All done! $FOO $BAR"
By using this approach, SimploTask enables users to write and execute more complex scripts, providing greater flexibility and power in managing remote hosts or local environments.
Targets
Targets are used to define the remote hosts to execute the tasks on. Targets can be defined in the playbook file or passed as a command-line argument. The following target types are supported:
hosts
: a list of destination host names or IP addresses, with optional port and username, to execute the tasks on. Example:hosts: [{host: "h1.example.com", user: test}, {host: "h2.example.com", "port": 2222}]
. If no user is specified, the user defined in the top section of the playbook file (or override) will be used. If no port is specified, port 22 will be used.inventory_file
: a path to the inventory file to use and groups to use. Example:inventory_file: {"location": "testdata/inventory", "groups": []{"gr1"} }
. Ifgroups
not defined all the groups will be used. The inventory file contains a list of host names or IP addresses, one per line with optional[group]
values.inventory_url
: a URL to the inventory file to use. Example:inventory_url: {"location": "http://localhost:8080/inventory"}
. The response contains a list of host names or IP addresses, one per line. The same support for groups as forinventory_file
is available.
Targets contains environments each of which represents a set of hosts, for example:
targets:
prod:
hosts: [{host: "h1.example.com", user: "test"}, {"h2.example.com", "port": 2222}]
staging:
inventory_file: {location: "testdata/inventory", groups: ["staging"]}
dev:
inventory_url: {location: "http://localhost:8080/inventory", groups: ["dev", "staging"]}
Inventory file format
The inventory file is a simple text file with a list of host names or IP addresses, one per line. The file can contain groups, each group is defined by a line with the group name in square brackets [group]
followed by a list of hosts that belong to the group. For example:
[group1]
h1.example.com
h2.example.com:2222
h3.example.com user1
[group2]
h4.example.com:2222 user2
In case if groups not needed, the file can contain only a list of hosts, for example:
h1.example.com
h2.example.com:2222
h3.example.com user1
h4.example.com:2222 user2
Runtime variables
SimploTask supports runtime variables that can be used in the playbook file. The following variables are supported:
{SPOT_REMOTE_HOST}
: The remote host name or IP address.{SPOT_REMOTE_USER}
: The remote username.{SPOT_COMMAND}
: The command name.{SPOT_TASK}
: The task name.{SPOT_ERROR}
: The error message, if any.
Variables can be used in the following places: script
, copy
, sync
, delete
, wait
and env
, for example:
tasks:
deploy-things:
commands:
- name: copy configuration
copy: {"src": "{SPOT_REMOTE_HOST}/conf.yml", "dst": "/tmp/conf.yml", "mkdir": true}
- name: sync things
sync: {"src": "testdata", "dst": "/tmp/{SPOT_TASK}/things"}
- name: some command
script: |
ls -laR /tmp/${SPOT_COMMAND}
env: { FOO: bar, BAR: "{SPOT_COMMAND}-blah" }
- name: delete things
delete: {"loc": "/tmp/things/{SPOT_REMOTE_USER}", "recur": true}
Rolling Updates
SimploTask supports rolling updates, which means that the tasks will be executed on the hosts one by one, waiting for the previous host to finish before starting the next one. This is useful when you need to update a service running on multiple hosts, but want to avoid downtime. To enable rolling updates, use the --concurrent=N
flag when running the spot
command. N
is the number of hosts to execute the tasks on concurrently. Example: spot --concurrent=2
. In addition, user can use a builtin wait
command to wait for a service to start before executing the next command. See the Command Types section for more details. Practically, user will have a task with a series of commands, where the last command will wait for the service to start by running a command like curl -s --fail localhost:8080
and then the task will be executed on the next host.
Why SimploTask?
SimploTask is designed to provide a simple, efficient, and flexible solution for deployment and configuration management. It addresses the need for a tool that is easy to set up and use, while still offering powerful features for managing infrastructure. Below are some of the reasons why you should consider using SimploTask:
- Simplicity: SimploTask's primary goal is to be as simple as possible without sacrificing functionality. Its configuration is written in YAML, making it easy to read and understand. You can quickly create and manage tasks, targets, and commands without dealing with complex structures or concepts.
- Flexibility: SimploTask is designed to be flexible and adaptable to various deployment and configuration scenarios. You can use it to manage different targets, such as production, staging, and development environments. It supports executing tasks on remote hosts directly or through inventory files and URLs, allowing you to use existing inventory management solutions.
- Extensibility: SimploTask is built to be extensible, allowing you to define custom scripts for execution on remote hosts, as well as offering built-in commands for common operations such as copy, sync, and delete. This extensibility enables you to create complex workflows for deployment and configuration management, tailored to your specific needs.
- Concurrent Execution: SimploTask supports concurrent execution of tasks, allowing you to speed up the deployment and configuration processes by running multiple tasks simultaneously. This can be particularly helpful when managing large-scale infrastructure or when time is of the essence.
- Customizable: SimploTask provides various command-line options and environment variables that enable you to customize its behavior according to your requirements. You can easily modify the playbook file, task, target, and other parameters, as well as control the execution flow by skipping or running specific commands.
- Lightweight: SimploTask is a lightweight tool, written in Go, that does not require heavy dependencies or a complex setup process. It can be easily installed and run on various platforms, making it an ideal choice for teams looking for a low-overhead solution for deployment and configuration management.
In conclusion, SimploTask is a powerful and easy-to-use tool that simplifies the process of deployment and configuration management while offering the flexibility and extensibility needed to cater to various use cases. If you value simplicity, efficiency, and a customizable experience, SimploTask is a great choice for your infrastructure management needs.
Is it replacing Ansible?
SimploTask is not intended to be a direct replacement for Ansible. While both tools can be used for deployment and configuration management, there are some key differences between them:
- Complexity: Ansible is a more feature-rich and mature tool, offering a wide range of modules and plugins that can automate many different aspects of infrastructure management. SimploTask, on the other hand, is designed to be simple and lightweight, focusing on a few core features to streamline the deployment and configuration process.
- Learning Curve: Due to its simplicity, SimploTask has a lower learning curve compared to Ansible. It's easier to get started with SimploTask, making it more suitable for smaller projects or teams with limited experience in infrastructure automation. Ansible, while more powerful, can be more complex to learn and configure, especially for newcomers.
- Customization: While both tools offer customization options, Ansible has a more extensive set of built-in modules and plugins that can handle a wide range of tasks out-of-the-box. SimploTask, in contrast, relies on custom scripts and a limited set of built-in commands for its functionality, which might require more manual configuration and scripting for certain use cases.
- Community and Ecosystem: Ansible has a large and active community, as well as a vast ecosystem of roles, modules, and integrations. This can be beneficial when dealing with common tasks or integrating with third-party systems. SimploTask, being a smaller and simpler tool, doesn't have the same level of community support or ecosystem.
- Ease of installation and external dependencies: One of the most significant benefits of SimploTask is that it has no dependencies. Being written in Go, it is compiled into a single binary that can be easily distributed and executed on various platforms. This eliminates the need to install or manage any additional software, libraries, or dependencies to use SimploTask. Ansible, on the other hand, is written in Python and requires Python to be installed on both the control host (where Ansible is run) and the managed nodes (remote hosts being managed). Additionally, Ansible depends on several Python libraries, which need to be installed and maintained on the control host. Some Ansible modules may also require specific libraries or packages to be installed on the managed nodes, adding to the complexity of managing dependencies.
SimploTask can be a good choice if you're looking for a lightweight, simple, and easy-to-use tool for deployment and configuration management, particularly for smaller projects or when you don't need the extensive features offered by Ansible. However, if you require a more comprehensive solution with a wide range of built-in modules, plugins, and integrations, Ansible might be a better fit for your needs.
The simplicity of SimploTask's single binary distribution and lack of dependencies make it an attractive choice for teams who want a lightweight, easy-to-install, and low-maintenance solution for deployment and configuration management. While Ansible offers more advanced features and a comprehensive ecosystem, its dependency on Python and additional libraries can be a hurdle for some users, particularly in environments with strict control over software installations or limited resources.
Status
The project is currently in active development, and breaking changes may occur until the release of version 1.0. However, we strive to minimize disruptions and will only introduce breaking changes when there is a compelling reason to do so.
Contributing
Please feel free to submit issues, fork the repository, and send pull requests.
License
This project is licensed under the MIT License. See the LICENSE file for more information.
Directories
¶
Path | Synopsis |
---|---|
config/deepcopy
Package deepcopy makes deep copies of things.
|
Package deepcopy makes deep copies of things. |
executor
Package executor provides an interface for the executor as well as a local and remote implementation.
|
Package executor provides an interface for the executor as well as a local and remote implementation. |