×

nf-k8s @ 1.5.4

Provider: nextflow-io
Claimed: 14 Sep 2025 20:02:14 (UTC)
Description: The Kubernetes plugin enables Nextflow pipelines to execute natively on Kubernetes clusters with support for pod management, volume mounting, and resource allocation. It solves the problem of running data processing workflows on containerized infrastructure by automatically detecting and managing Kubernetes configurations. Bioinformaticians, data engineers, and DevOps teams use this plugin to scale Nextflow pipelines across Kubernetes clusters.
Latest version: 1.5.4
Total downloads: 82.5K View trends

Kubernetes plugin for Nextflow

Summary

The Kubernetes plugin provides native Kubernetes execution capability for Nextflow pipelines. It supports pod management, volume mounting, and resource allocation.

Get Started

To use this plugin, add it to your nextflow.config:

plugins {
    id 'nf-k8s'
}

Configure the Kubernetes executor:

process.executor = 'k8s'

k8s {
    namespace = 'default'
    serviceAccount = 'nextflow'
    storageClaimName = 'nextflow-pvc'
}

The plugin automatically detects the Kubernetes configuration from:

  • In-cluster configuration (when running inside a pod)
  • ~/.kube/config file
  • KUBECONFIG environment variable

Examples

Basic Kubernetes Configuration

plugins {
    id 'nf-k8s'
}

process.executor = 'k8s'

k8s {
    namespace = 'nextflow'
    serviceAccount = 'nextflow-sa'
    storageClaimName = 'nf-workdir-pvc'
    storageMountPath = '/workspace'
}

workDir = '/workspace/work'

Pod Configuration

k8s {
    namespace = 'nextflow'
    pod = [
        [volumeClaim: 'data-pvc', mountPath: '/data'],
        [secret: 'aws-credentials', mountPath: '/root/.aws']
    ]
}

Resource Requests

process {
    executor = 'k8s'
    cpus = 2
    memory = '4 GB'

    pod = [[label: 'app', value: 'nextflow']]
}

License

Apache License 2.0

Nextflow version >=25.12.0-edge
Depends On -
Release Date 28 May 2026 08:51:11 (UTC)
Release Notes -
Download URL https://registry.nextflow.io/api/v1/plugins/nf-k8s/1.5.4/download/nf-k8s-1.5.4.zip
Store URL https://public.cr.seqera.io/v2/nextflow/plugin/nf-k8s/blobs/sha256:6a98863df336fcf23f7c18714da054dca32a93df6a0fa22365b678c426dddaa4
Size 9.1 MB
Checksum 19a9d9dbf466032f48e7a176cec5e2e9c72c7fa9c53913f56dfb0acb876972a427e62a381bd4bde1bef450767ab7e2633261b382fca7bb71b57fe8b401221a99
Total downloads 1.9K View trends
Security Scan
Version Nextflow version Date Status Downloads
1.5.4 >=25.12.0-edge 28 May 2026 08:51:11 (UTC) 1.9K
1.5.3 >=25.12.0-edge 21 May 2026 21:24:56 (UTC) 356
1.5.2 >=25.12.0-edge 20 Apr 2026 21:57:49 (UTC) 845
1.5.1 >=25.12.0-edge 18 Mar 2026 09:06:25 (UTC) 143
1.5.0 >=25.12.0-edge 11 Feb 2026 20:40:14 (UTC) 119
1.4.0 >=25.12.0-edge 19 Dec 2025 12:52:05 (UTC) 272
1.3.0 >=25.11.0-edge 28 Nov 2025 21:12:17 (UTC) 232
1.2.2 >=25.09.2-edge 21 Oct 2025 15:57:16 (UTC) 31.0K
1.2.1 >=25.08.0-edge 08 Oct 2025 18:21:55 (UTC) 80
1.0.1 >=25.03.0-edge 06 Oct 2025 21:32:44 (UTC) 23.4K
1.2.0 >=25.08.0-edge 14 Sep 2025 20:20:50 (UTC) 111
1.1.1 >=25.07.0-edge 15 Aug 2025 14:36:44 (UTC) 685
1.1.0 >=25.05.0-edge 02 Jun 2025 19:45:07 (UTC) 292
1.0.0 >=25.03.0-edge 23 Apr 2025 10:48:31 (UTC) 23.0K