Download the PHP package chapi/chapi-client without Composer
On this page you can find all versions of the php package chapi/chapi-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package chapi-client
chapi

Chronos and marathon api client for your console.
Description
Manage your Chronos and Marathon tasks like a git repository in your console:
- Prepare your tasks before you send them to Remote
- Manage a separate git repository for task backups and history
- Quickly check your tasks' status
It is possible to use either of the systems independently or both at once.
Requirements
- php >= 5.6
Installation / Configuration
To install chapi you can download the latest release or clone this repository.
If you clone the repository you need to run a composer install
to install all necessary dependencies:
Before you use chapi the first time you have to setup your chronos api url and the path to your local task repository.
You can use the configure
command to setup your global settings:
Configuration file locations
Chapi attempts to read a global and a local configuration file, at least one of which must exist. Should both files exist, values found in the local configuration override those defined in the global one.
The global configuration file's location is
-
~/.chapi/.chapiconfig
if $CHAPI_HOME is not set ${CHAPI_HOME}/.chapiconfig
, if $CHAPI_HOME is set
The local configuration searched for in your current working directory.
${PWD}/.chapiconfig
,
Profiles
You can switch between different profiles by using the global
--profile[=PROFILE]
option.
If no profile is set chapi will use default
as active profile.
Configuration file contents
Both configuration files are in the yaml format.
The configuration is located in the profiles
property.
There you will find the parameters
for each set profile.
default
will be used if you don't use a explicit profile.
chronos_url
The chronos api url (inclusive port). See also configure command option -u
.
chronos_http_username
The chronos http username. See also configure command option -un
.
Necessary if the setting --http_credentials
is activated in your Chronos instance.
chronos_http_password
The chronos http password. See also configure command option -un
.
Necessary if the setting --http_credentials
is activated in your Chronos instance.
repository_dir
Root path to your job files. See also configure command option -r
.
marathon_url
The marathon api url (inclusive port). See also configure command option -mu
.
marathon_http_username
The marathon http username. See also configure command option -mun
.
marathon_http_password
The marathon http password. See also configure command option -mp
.
repository_dir_marathon
Root path to your tasks folder. See also configure command option -mr
.
cache_dir
Path to cache directory. See also configure command option -d
.
Update notes
v0.9.0
Because of the new marathon support with v0.9.0 you need to update your configurations.
The parameters.yml
structure changed and renamed to .chapiconfig
.
You need to recreate your config settings:
Disabling services
To disable Chronos support and only use Marathon, set all the
Chronos parameters to ''
:
Ignoring jobs
You can specify pattern for each profile in your .chapiconfig
file(s) and add a file to your job repositories to untrack jobs you want chapi to ignore.
- The matching pattern according to the rules used by the libc glob() function, which is similar to the rules used by common shells.
- An optional prefix "
!
" which negates the pattern; any matching job excluded by a previous pattern will become included again.
Example content:
Usage
list
Display your tasks and filter them by failed
Options:
-f, --onlyFailed Display only failed jobs
-d, --onlyDisabled Display only disabled jobs
--profile[=PROFILE] Use a specific profile from your config file.
info
Display your task information from remote system
Arguments:
jobName selected job
Options:
--profile[=PROFILE] Use a specific profile from your config file.
The task name in case of marathon would be the full id for the task.
status
Show the working tree status
Options:
--profile[=PROFILE] Use a specific profile from your config file.
diff
Show changes between tasks and working tree, etc
Arguments:
jobName Show changes for specific job
Options:
--profile[=PROFILE] Use a specific profile from your config file.
add
Add task contents to the index
Arguments:
jobnames Jobs to add to the index
Options:
--profile[=PROFILE] Use a specific profile from your config file.
reset
Remove tasks from the index
Arguments:
jobnames Jobs to add to the index
Options:
--profile[=PROFILE] Use a specific profile from your config file.
pull
Pull tasks from remote system and add them to local repository
Arguments:
jobnames Jobnames to pull
Options:
-f, --force Force to overwrite local jobs
--profile[=PROFILE] Use a specific profile from your config file.
commit
Submit changes to chronos or marathon
Options:
--profile[=PROFILE] Use a specific profile from your config file.
scheduling
Display upcoming jobs in a specified timeframe
Options:
-s, --starttime[=STARTTIME] Start time to display the jobs
-e, --endtime[=ENDTIME] End time to display the jobs
--profile[=PROFILE] Use a specific profile from your config file.
Note: Not applicable to marathon
configure
Configure application and add necessary configs
Options:
-u, --chronos_url[=CHRONOS_URL] The chronos url (inclusive port)
-un, --chronos_http_username[=CHRONOS_HTTP_USERNAME] The chronos username (HTTP credentials) [default: ""]
-p, --chronos_http_password[=CHRONOS_HTTP_PASSWORD] The chronos password (HTTP credentials) [default: ""]
-d, --cache_dir[=CACHE_DIR] Path to cache directory
-r, --repository_dir[=REPOSITORY_DIR] Root path to your job files
--profile[=PROFILE] Use a specific profile from your config file.
validate
Validate local jobs
Arguments:
jobmames Jobs to validate
Options:
--profile[=PROFILE] Use a specific profile from your config file.
Example workflows
Add a new job to chronos
A typical workflow to add a new cronjob to your Chronos server via chapi can be:
- A pull request for a new cronjob (json definition) comes in a git repository (created by a colleague of you)
- Accept the pull request and switch to your local clone via
cd ~/my/clone
- Update your local repository via
git pull
- Check the current status via
chapi status
- Validate everything via
chapi validate .
- Add the new job via
chapi add jobXy
- Apply the changes and update the Chronos server via
chapi commit
Move jobs from chronos cluster A to cluster B successively
Chapi is able to support you if you need to move your tasks from a chronos cluster to another one.
-
Setup your normal chapi config and local job repository
-
Create a new empty folder which stands for your second chronos cluster repository:
-
Add a local
.chapiconfig
file (see configuration) to the new folder: -
Edit the file and add the
chronos_url
andrepository_dir
parameters for your second chronos cluster: -
Open a second console and switch to the new folder where the
.chapiconfig
file is located: -
Now you are able to move job for job from your normal repository to the new repository:
- Chapi in console 1 will delete the jobs from the "old" cluster and chapi in the second console 2 will add the moved jobs to the new one.
Supported commands for either system
chronos | marathon | |
---|---|---|
list | :white_check_mark: | :white_check_mark: |
info | :white_check_mark: | :white_check_mark: |
status | :white_check_mark: | :white_check_mark: |
diff | :white_check_mark: | :white_check_mark: |
add | :white_check_mark: | :white_check_mark: |
reset | :white_check_mark: | :white_check_mark: |
pull | :white_check_mark: | :white_check_mark: |
commit | :white_check_mark: | :white_check_mark: |
scheduling | :white_check_mark: | n.a. |
configure | :white_check_mark: | :white_check_mark: |
validate | :white_check_mark: |
Special cases in marathon:
- Pulling a task from marathon will dump the json object with default values. This is the choice for now because calling marathon for app info sends the default values set as well. Logic to check this could be implemented in future.
- Group apps cannot be pulled from marathon in the configuration with which it was posted. This is because once an app is in marathon, the group specific config is lost.
- The marathon App id should be be prefixed by
/
. This is a good practice. The reason this needs to be forced is because the local configuration withmyapp
will be seen in marathon as/myapp
and by chapi as two different apps.
If you find any further issues or edge case, please create an issue.
Supported Chronos versions
- v2.5
Supported Marathon versions
- v1.6.322
Docker
You can run chapi also in a docker container. You will find the laster releases under dockerhub.
Prepare a config file for docker
Create a .chapiconfig_docker
file with the following content:
Run docker
Run docker for development
Todos:
Marathon
- [ ] The validate command for marathon is not yet implemented.
- [ ] The list command has status set as
ok
for marathon entities. This could show the last status of the app.
All versions of chapi-client with dependencies
symfony/console Version ~3.0
symfony/dependency-injection Version ~3.0
symfony/yaml Version ~3.0
symfony/filesystem Version ~3.0
symfony/config Version ~3.0
symfony/monolog-bridge Version ~3.0
symfony/event-dispatcher Version ~3.0
doctrine/cache Version ~1.6
guzzlehttp/guzzle Version ~6.2
psr/log Version ~1.0
webmozart/glob Version ~4.1