Giter VIP home page Giter VIP logo

kube-runner's People

Contributors

bentsherman avatar feltus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kube-runner's Issues

Automatically detect and delete dangling nextflow pods

When running nextflow on kubernetes, nextflow should be able to clean up it's worker pods if it terminates. However there seem to be some edge cases where it doesn't clean everything up, and the worker pods persist after the submitter pod has terminated.

I've written some bash code to detect these pods and delete them via kubectl:

PODS=$(kubectl get pods --no-headers | grep 'nf-' | awk '{ print $1 }')

for POD in ${PODS}; do
        RUN_NAME=$(kubectl get pod --output 'jsonpath={.metadata.labels.runName}' ${POD})

        kubectl get pod --no-headers ${RUN_NAME} > /dev/null

        if [[ $? != 0 ]]; then
                kubectl delete pod ${POD}
        fi
done

I think we could add this to kube-clean.sh, but I'm afraid that this code could be pretty destructive if any errors occur with kubectl itself. So I'd like to find a more robust way to determine whether the submitter pod still exists.

Also, we should think about whether this code could be automated, maybe with a CronJob?

Hope that the official can support namespace

When I run related tasks locally with nextflow, using the -n {namespace} parameter has no effect. The created pods are all in the default (default) space. I hope the footsteps can support the namespace parameter.

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.