The Supervisor Client is a Ruby library and CLI tool that provides easy access to the Supervisor - The Docker GitOps service, enabling you to manage stacks with GitOps strategies. This library wraps the Supervisor API and allows to create, update, control, and query stacks directly from Ruby applications or the command line.
To install the Supervisor Client, add this line to your application's Gemfile:
gem 'supervisor'
Then, execute:
bundle install
Or install it directly:
gem install supervisor
Before using the library, configure the base_url
and api_key
:
require 'supervisor'
Supervisor.configure do |config|
config.base_url = 'https://supervisor.example.com'
config.api_key = '8db7fde4-6a11-462e-ba27-6897b7c9281b'
end
After configuration, you can call any of the provided API methods directly.
Once configured, interact with the Supervisor API using the following methods:
Supervisor.create_stack(params) # Creates a new stack
Supervisor.list_stacks # Lists all stacks
Supervisor.show_stack(stack_uuid) # Shows details of a specific stack
Supervisor.stack_stats(stack_uuid) # Retrieves statistics for a stack
Supervisor.update_stack(stack_uuid, params) # Updates an existing stack
Supervisor.delete_stack(stack_uuid) # Deletes a specified stack
Supervisor.control_stack(stack_uuid, command) # Controls (start, stop) a stack
Supervisore.stack_last_log_entry(stack_uuid) # Retrieves the last log entry for a stack
Supervisor.stack_logs(stack_uuid) { block } # Retrieves logs for a stack (Server-sent events)
Supervisor.health_check # Checks the health of the service
The supervisor
CLI provides easy command-line access to Supervisor API
actions. The CLI has two main subcommands: health
and stacks
.
Before using the CLI, configure the Supervisor base URL and API key by
creating a configuration file at ~/.supervisor
:
---
base_url: https://supervisor.example.com
api_key: 8db7fde4-6a11-462e-ba27-6897b7c9281b
supervisor <command> [options]
supervisor health
Checks the health of the Supervisor service.
The stacks
subcommand provides a variety of operations for managing stacks.
supervisor stacks <subcommand> [options]
Subcommand | Description |
---|---|
create |
Creates a new stack using a YAML manifest file. |
update |
Updates an existing stack with a new manifest file. |
control |
Controls (start, stop) a stack. |
delete |
Deletes a specified stack. |
show |
Shows details of a specified stack. |
stats |
Retrieves statistics for a stack. |
list |
Lists all stacks in Supervisor. |
control |
Controls (start, stop, rest) a stack. |
log |
Retrieves log for a stack. |
-
create
andupdate
: Both require the--manifest-file FILE
option to specify a YAML manifest file describing the stack. The optional--decrypt
option usessops
to decrypt inline attributes in the YAML file.- Example:
supervisor stacks create --manifest-file stack.yaml --decrypt supervisor stacks update --manifest-file stack.yaml --decrypt STACK-UUID
- Example:
-
update
: In addition to--manifest-file FILE
,update
requires the parameterSTACK-UUID
for the stack to update. -
show
,stats
,delete
: Each of these subcommands requires the parameterSTACK-UUID
for the stack to operate on.- Example:
supervisor stacks show STACK-UUID supervisor stacks stats STACK-UUID supervisor stacks delete STACK-UUID
- Example:
-
show
: By default, sensitive data in the output is filtered. Use the--unfiltered
option to disable filtering.- Example:
supervisor stacks show STACK-UUID --unfiltered
- Example:
-
show
,stats
,list
: These subcommands output information in a table format by default. Use the--json
option to output data in JSON format.- Example:
supervisor stacks list --json
- Example:
The repository includes a bash completion script for the supervisor
CLI. For
usage copy the etc/bash/completion
file to your bash completion directory.
cp etc/bash/completion /etc/bash_completion.d/supervisor
The manifest file, specified by --manifest-file FILE
, is a YAML file that
defines a stack’s configuration. Here’s an example:
name: whoami
git_repository: https://github.com/tschaefer/infrastructure
git_username: tschaefer
git_token: github_pat_...FFF
git_reference: refs/heads/main
compose_file: lib/stack/whoami/docker-compose.yml
compose_includes:
- lib/stack/whoami/includes/traefik.yml
- lib/stack/whoami/includes/network.yml
compose_variables:
NETWORK_IPV4_WHOAMI: 172.18.100.111
NETWORK_ID: core
strategy: polling
polling_interval: 300
signature_header: nil
signature_secret: nil
name
: Unique name for the stack.git_repository
: URL to the git repository with the stack'sdocker-compose.yml
file.git_username
andgit_token
: (Optional) Authentication details for the repository.compose_file
: Path to the primarydocker-compose.yml
file in the repository.compose_includes
: List of additional Compose files to be included.compose_variables
: Variables to be passed to the Compose file.strategy
: GitOps strategy (polling
orwebhook
).polling_interval
: (Forpolling
strategy) Interval, in seconds, for polling the repository.signature_header
andsignature_secret
: (Forwebhook
strategy) Signature details.
This project is licensed under the MIT License. See the LICENSE file for details.