rancher/container-crontab

Name: container-crontab

Owner: Rancher

Description: Simple cron runner for containers

Created: 2017-02-13 19:51:19.0

Updated: 2018-05-22 07:55:32.0

Pushed: 2018-03-21 16:48:27.0

Homepage: null

Size: 4940

Language: Go

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

container-crontab

A microservice that will perform actions on a Docker container based on cron schedule.

Building

make

Running

Standard Docker mode:

./bin/container-crontab

Rancher Mode:

./bin/container-crontab --rancher-mode [--metadata-url http://rancher-metadata/latest]

Usage
Standard Mode:

Once container-crontab is up and running it watches Docker socket events for create, start and destroy events. If a container is found to have the label cron.schedule then it will be added to the crontab based on the schedule.

Cron scheduling rules follow: Expression Format

Use Cron Expression Generator & Explainer to quickly generate cron expressions and convert them to readable text format.

Rancher Mode:

When running in Rancher mode, the service watches Rancher metadata for service state. If the service is in any other mode then Active, then the job is disabled.

It watches metadata on a 5 second interval, so there is a small window where a job could be run when the state is changing. If the container is stopped as part of the upgrade or service deactivate, that event will be immediate. When services are reactivated there is a 5 second window for the job to be re-activated.

Override labels that can be applied

To override the default start action on the container, set the label cron.action equal to stop or restart.

To override the default 10 second restart/stop timeout set the label cron.restart_timeout to the number of seconds you would like. For instance for 20 seconds: cron.restart_timeout=20.

Examples
start every minute
cker run -d --label=cron.schedule="0 * * * * ?" ubuntu:16.04 date
Metrics

Starting in v0.3.0 the container-crontab exposes a prometheus metrics endpoint http://<ip>:9191/metrics when started with the --metrics CLI option. From that you can get a guage on the number of Jobs sliced by Active/Inactive states. It also provides other golang information about the program.

rancher_container_crontab_jobs_total{hostname, state}

License

Copyright (c) 2014-2017 Rancher Labs, Inc.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.