Coder Social home page Coder Social logo

pipeline2dot's Introduction

concourse pipelines to dot graphs

Usage

fly -t ci get-pipeline -p concourse | \
  pipeline2dot | \
  dot -Tpng > graph.png

Result

why?

At the moment, the Concourse web ui can't deal with some cases of cyclic dependencies.

(see concourse/concourse#4445)

E.g., consider the following pipeline:

jobs:
  - name: jobA0
    plan:
      - get: res-1

  - name: jobA
    plan:
      - get: res-1
        passed: [jobC]

  - name: jobB
    plan:
      - get: res-1
        passed: [jobA]

  - name: jobC
    plan:
      - get: res-1
        passed: [jobB]
      - get: res-2

resources:
  - name: res-1
    type: time
    source: {interval: 2m}

  - name: res-2
    type: time
    source: {interval: 2m}

Such pipeline has the following layout:

which brakes the UI (for now).

This tool can help you figure out where you introduced that cycle that is crashing your UI.

caveats

It currently doesn't support the non step-based in_parallel format (anything coming directly from fly -t $target get-pipeline) will work though (as it converts to step-based).

e.g., the following won't work

jobs:
- name: aa
  plan:
    - in_parallel:
      - get: bla

but this, will:

jobs:
- name: aa
  plan:
    - in_parallel:
        steps:
        - get: bla

pipeline2dot's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.