Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(compose): Support depends_on property #1634

Merged
merged 2 commits into from
May 9, 2024

Commits on May 9, 2024

  1. feat(compose): Introduce methods for ordering services by dependencies

    The two newly introduced methods help with fetching dependencies
    and ordering services either by dependency order or reverse
    dependency order.
    
    Signed-off-by: Luca Seritan <luca.seritan@gmail.com>
    LucaSeri committed May 9, 2024
    Configuration menu
    Copy the full SHA
    b9d9eb7 View commit details
    Browse the repository at this point in the history
  2. feat(compose): Support depends_on property

    The depends_on property allows specifying dependencies
    between services. The services will always be started
    in the order of the dependencies and always be stopped
    in the opposite order. At the moment we cannot do healthchecks
    in krafkit, so the condition of the dependency is ignored.
    
    Signed-off-by: Luca Seritan <luca.seritan@gmail.com>
    LucaSeri committed May 9, 2024
    Configuration menu
    Copy the full SHA
    2e1e57a View commit details
    Browse the repository at this point in the history