Skip to content

Releases: mcuadros/ofelia

v0.3.6

02 Oct 18:15
Compare
Choose a tag to compare

Added way to provide environment variables for the job-run, job-exec and job-local.

See jobs.md for documentation.

Examples of usage new of new feature:

  • docker-compose.yml:

    version: "3"
    services:
    ofelia:
      image: mcuadros/ofelia:002a481
      depends_on:
        - alpine
      command: daemon --docker
      volumes:
        - /var/run/docker.sock:/var/run/docker.sock:ro
      environment:
        DOCKER: COMPOSE
      labels:
        ofelia.job-local.test1.schedule: "@every 5s"
        ofelia.job-local.test1.command: "env"
        ofelia.job-local.test1.environment: '["JOB=LOCAL", "TEST=1"]'
    
        ofelia.job-run.test2.command: "env"
        ofelia.job-run.test2.schedule: "@every 5s"
        ofelia.job-run.test2.image: "alpine"
        ofelia.job-run.test2.environment: '["JOB=RUN", "TEST=2"]'
    
    alpine:
      image: alpine
      command: tail -f /dev/null
      labels:
        ofelia.enabled: "true"
        ofelia.job-exec.test3.schedule: "@every 5s"
        ofelia.job-exec.test3.command: "env"
        ofelia.job-exec.test3.environment: '["JOB=EXEC", "TEST=3"]'
  • config.ini:

     [job-run "test1"]
     schedule = @every 5s
     image = alpine
     name = test1
     command = env
     environment = JOB=RUN
     environment = TEST=1
    
     [job-local "test2"]
     schedule = @every 5s
     command = env
     environment = JOB=LOCAL
     environment = TEST=2
    
     [job-exec "test3"]
     schedule = @every 5s
     container = some_container_that_must_be_running
     command = env
     environment = TEST=3
     environment = JOB=EXEC
    

v0.3.5

02 Oct 14:57
Compare
Choose a tag to compare

Fixes #150 :

  • Update Docker Go version to 1.17.1
  • Update Docker Alpine version to 3.14.2
  • Update Dependencies to latest versions

v0.3.4

03 Feb 20:41
Compare
Choose a tag to compare

Issues fixed:

#136 - add datetime to the log entries 2021-02-03T20:38:00.602Z scheduler.go:34 ▶ NOTICE New job registered...
#141 - fix issue, when logs were not fetched if job-run failed

v0.3.3

02 Dec 18:05
Compare
Choose a tag to compare

Fixes:

  • #135 - false in config was ignored for some parameters
  • #130 - High memory consumption / memory leak fix by removing storing of jobs history
  • #132 - set "since" parameter for container logs
  • #128 - stdout/stderr can be either sent via mail or stored as file

v0.3.2

09 Oct 19:43
Compare
Choose a tag to compare

Improvements for fetching private images and custom registries:

  • Support more types of image names #119
  • try to fetch auth for default docker registry URLs 76fa41b

v0.3.1

20 Sep 11:27
Compare
Choose a tag to compare
  • Add mounts support for the job-run #114
  • Fix retrieving of logs for the job-run #115
  • Update of the docker client and other dependencies #116

v0.3.0

24 May 03:49
4e565f8
Compare
Choose a tag to compare

Commits included: v0.2.2...v0.3.0

v0.2.2

19 Dec 21:22
Compare
Choose a tag to compare

Go 1.7

v0.2.1

01 Jan 11:12
Compare
Choose a tag to compare
  • Fix email middleware, was triggering when is empty

v0.2.0

27 Dec 19:47
Compare
Choose a tag to compare
  • Local jobs