volcano.sh/volcano
A Cloud Native Batch System (Project under CNCF)
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
4 of 331 committers (1.2%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.8%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
A Cloud Native Batch System (Project under CNCF)
Basic Info
- Host: GitHub
- Owner: volcano-sh
- License: apache-2.0
- Language: Go
- Default Branch: master
- Homepage: https://volcano.sh
- Size: 85.9 MB
Statistics
- Stars: 4,923
- Watchers: 88
- Forks: 1,187
- Open Issues: 408
- Releases: 39
Topics
Metadata Files
README.md
Volcano is a Kubernetes-native batch scheduling system, extending and enhancing the capabilities of the standard kube-scheduler. It provides a comprehensive set of features specifically designed to manage and optimize various batch and elastic workloads, including Artificial Intelligence (AI) / machine learning (ML) / deep learning (DL), bioinformatics / genomics, and other "Big Data" applications.
These workloads commonly leverage AI, Big Data, and HPC frameworks such as Spark, Flink, Ray, TensorFlow, PyTorch, Argo, MindSpore, PaddlePaddle, Kubeflow, MPI, Horovod, MXNet, KubeGene, and others, with which Volcano offers robust integration.
Volcano incorporates over fifteen years of collective experience in operating diverse high-performance workloads at scale across multiple systems and platforms. It combines proven best practices and innovative concepts from the open-source community to deliver a powerful and flexible scheduling solution.
As of 2025, Volcano has seen widespread adoption across numerous industries globally, including Internet/Cloud, Finance, Manufacturing, and Medical sectors. Many organizations and institutions are not only end-users but also active contributors to the project. Hundreds of contributors actively participate in code commits, pull request reviews, issue discussions, documentation updates, and design proposals. We encourage your participation in the ongoing development and growth of the Volcano project.
NOTE: the scheduler is built based on kube-batch; refer to #241 and #288 for more detail.

Volcano is an incubating project of the Cloud Native Computing Foundation (CNCF). Please consider joining the CNCF if you are an organization that wants to take an active role in supporting the growth and evolution of the cloud native ecosystem.
Overall Architecture

Talks
- Intro: Kubernetes Batch Scheduling @ KubeCon 2019 EU
- Volcano 在 Kubernetes 中运行高性能作业实践 @ ArchSummit 2019
- Volcano:基于云原生的高密计算解决方案 @ Huawei Connection 2019
- Improving Performance of Deep Learning Workloads With Volcano @ KubeCon 2019 NA
- Batch Capability of Kubernetes Intro @ KubeCon 2019 NA
- Optimizing Knowledge Distillation Training With Volcano @ KubeCon 2021 EU
- Exploration About Mixing Technology of Online Services and Offline Jobs Based On Volcano @ KubeCon 2021 China
- Volcano - Cloud Native Batch System for AI, Big Data and HPC @ KubeCon 2022 EU
- How to Leverage Volcano to Improve the Resource Utilization of AI Pharmaceuticals, Autonomous Driving, and Smart Buildings @ KubeCon 2023 EU
- Run Your AI Workloads and Microservices on Kubernetes More Easily and Efficiently @ KubeCon 2023 China
- Optimize LLM Workflows with Smart Infrastructure Enhanced by Volcano @ KubeCon 2024 China
- How Volcano Enable Next Wave of Intelligent Applications @ KubeCon 2024 China
- Leverage Topology Modeling and Topology-Aware Scheduling to Accelerate LLM Training @ KubeCon 2024 China
Ecosystem
- Spark Operator
- Native Spark
- Flink
- KubeRay
- PyTorch
- TensorFlow
- kubeflow/training-operator
- kubeflow/arena
- MPI
- Horovod
- PaddlePaddle
- Cromwell
- MindSpore
- MXNet
- Argo
- KubeGene
Use Cases
- Why Spark chooses Volcano as built-in batch scheduler on Kubernetes?
- ING Bank: How Volcano empowers its big data analytics platform
- Using Volcano as a custom scheduler for Apache Spark on Amazon EMR on EKS
- Deploy Azure Machine Learning extension on AKS or Arc Kubernetes cluster
- Practical Tips for Preventing GPU Fragmentation for Volcano Scheduler
- Using Volcano in Large-Scale, Distributed Offline Computing
- OpenI-Octopus: How to Avoid Resource Preemption in Kubernetes Clusters
- How Does Volcano Empower a Content Recommendation Engine in Xiaohongshu
- How Ruitian Used Volcano to Run Large-Scale Offline HPC Jobs
- Integrating Volcano into the Leinao Cloud OS
- HPC on Volcano: How Containers Support HPC Applications in the Meteorological Industry
- iQIYI:Volcano-based Cloud Native Migration Practices
- PaddlePaddle Distributed Training on Volcano
Quick Start Guide
Prerequisites
- Kubernetes 1.12+ with CRD support
You can try Volcano by one of the following two ways.
Note: * For Kubernetes v1.17+ use CRDs under config/crd/bases (recommended) * For Kubernetes versions < v1.16 use CRDs under config/crd/v1beta1 (deprecated)
Install with YAML files
Install Volcano on an existing Kubernetes cluster. This way is both available for x86_64 and arm64 architecture.
kubectl apply -f https://raw.githubusercontent.com/volcano-sh/volcano/master/installer/volcano-development.yaml
Enjoy! Volcano will create the following resources in volcano-system namespace.
``` NAME READY STATUS RESTARTS AGE pod/volcano-admission-5bd5756f79-dnr4l 1/1 Running 0 96s pod/volcano-controllers-687948d9c8-nw4b4 1/1 Running 0 96s pod/volcano-scheduler-94998fc64-4z8kh 1/1 Running 0 96s
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/volcano-admission-service ClusterIP 10.98.152.108
NAME READY UP-TO-DATE AVAILABLE AGE deployment.apps/volcano-admission 1/1 1 1 96s deployment.apps/volcano-controllers 1/1 1 1 96s deployment.apps/volcano-scheduler 1/1 1 1 96s
NAME DESIRED CURRENT READY AGE replicaset.apps/volcano-admission-5bd5756f79 1 1 1 96s replicaset.apps/volcano-controllers-687948d9c8 1 1 1 96s replicaset.apps/volcano-scheduler-94998fc64 1 1 1 96s
NAME COMPLETIONS DURATION AGE job.batch/volcano-admission-init 1/1 48s 96s
```
Install via helm
To install official release, please visit helm-charts for details.
bash
helm repo add volcano-sh https://volcano-sh.github.io/helm-charts
helm install volcano volcano-sh/volcano -n volcano-system --create-namespace
Install from source code for developers:
```bash helm install volcano installer/helm/chart/volcano --namespace volcano-system --create-namespace
list helm release
helm list -n volcano-system ```
Install from code
If you don't have a kubernetes cluster, try one-click install from code base:
bash
./hack/local-up-volcano.sh
This way is only available for x86_64 temporarily.
Install volcano agent
Please follow the guide Volcano Agent to install volcano agent.
Install monitoring system
If you want to get prometheus and grafana volcano dashboard after volcano installed, try following commands:
bash
kubectl create -f installer/volcano-monitoring.yaml
Install dashboard
Please follow the guide Volcano Dashboard to install volcano dashboard.
Kubernetes compatibility
| | Kubernetes 1.17 | Kubernetes 1.18 | Kubernetes 1.19 | Kubernetes 1.20 | Kubernetes 1.21 | Kubernetes 1.22 | Kubernetes 1.23 | Kubernetes 1.24 | Kubernetes 1.25 | Kubernetes 1.26 | Kubernetes 1.27 | Kubernetes 1.28 | Kubernetes 1.29 | Kubernetes 1.30 | Kubernetes 1.31 | Kubernetes 1.32 | Kubernetes 1.33 | |-----------------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|------------------|------------------|------------------|------------------| | Volcano v1.6 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | - | - | - | - | - | - | - | - | | Volcano v1.7 | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | - | - | - | | Volcano v1.8 | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | - | - | - | | Volcano v1.9 | - | - | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | - | - | | Volcano v1.10 | - | - | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | - | | Volcano v1.11 | - | - | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | - | | Volcano v1.12 | - | - | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | - | | Volcano HEAD (master) | - | - | - | - | - | - | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Key:
* ✓ Volcano and the Kubernetes version are exactly compatible.
* + Volcano has features or API objects that may not be present in the Kubernetes version.
* - The Kubernetes version has features or API objects that Volcano can't use.
Citing Volcano
If Volcano helps your research, we appreciate your citations. Here is the BibTeX entry:
bibtex
@misc{volcano2025,
title={Volcano: A Cloud Native Batch System},
author={Klaus Ma and Kevin Wang and others},
year={2025},
howpublished={\url{https://github.com/volcano-sh/volcano}},
}
Meeting
Community weekly meeting for Asia: 15:00 - 16:00 (UTC+8) Friday. (Convert to your timezone.)
Community biweekly meeting for America: 08:30 - 09:30 (UTC-8) Thursday. (Convert to your timezone.)
Community meeting for Europe is ongoing on demand now. If you have some ideas or topics to discuss, please leave message in the slack. Maintainers will contact with you and book an open meeting for that.
Resources: - Meeting notes and agenda - Meeting link - Meeting Calendar | Subscribe
Contact
If you have any question, feel free to reach out to us in the following ways:
WeChat: Please add WeChat account k8s2222 and request an invitation to the group chat.
Owner
- Name: Volcano
- Login: volcano-sh
- Kind: organization
- Email: volcano-sh@googlegroups.com
- Location: CNCF
- Website: http://volcano.sh
- Repositories: 13
- Profile: https://github.com/volcano-sh
A Cloud Native Batch System
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you use Volcano in your work, please cite it using the information below. This helps us demonstrate the project's impact."
title: "Volcano: A Cloud Native Batch System"
authors:
- given-names: "Klaus"
family-names: "Ma"
- given-names: "Kevin"
family-names: "Wang"
- name: "The Volcano Community & Contributors"
type: entity
repository-code: "https://github.com/volcano-sh/volcano"
url: "https://volcano.sh/"
keywords:
- "batch system"
- "kubernetes"
- "scheduling"
- "cncf"
- "high-performance computing"
- "big data"
- "artificial intelligence"
- "machine learning"
license: "Apache-2.0"
notes: "For a specific version, please find the release tag or use the general project information. A comprehensive list of releases can be found at: https://github.com/volcano-sh/volcano/releases"
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Da K. Ma | k****n@g****m | 329 |
| xuzhonghu | x****u@h****m | 302 |
| TommyLike | h****g@h****m | 206 |
| Thor-wl | 1****5@1****m | 195 |
| Zhe Jin | j****j@c****m | 112 |
| lowang-bh | l****g@1****m | 99 |
| Monokaix | c****g@h****m | 82 |
| Klaus Ma | m****3@h****m | 80 |
| wangyang | w****6@g****m | 67 |
| Thandayuthapani | t****1@g****m | 62 |
| ZhengYu, Xu | z****u@o****m | 58 |
| Klaus Ma | m****a@c****m | 52 |
| wpeng102 | w****2@1****m | 49 |
| lminzhw | l****e@h****m | 46 |
| huone1 | h****g@h****m | 44 |
| alcorj.mizar | a****r@g****m | 42 |
| wangyuqing | w****4@h****m | 41 |
| hwdef | h****m@o****m | 41 |
| william-wang | w****m@g****m | 41 |
| Zhang Jinghui | z****5@h****m | 40 |
| asifdxtreme | m****1@h****m | 36 |
| shinytang6 | 1****0@q****m | 35 |
| Rajadeepan D Ramesh | r****h@h****m | 32 |
| Jun Gong | j****g@t****m | 30 |
| jiangkaihua | j****1@h****m | 30 |
| Xiang Dai | l****i@f****m | 28 |
| SrinivasChilveri | s****h@h****m | 28 |
| googs1025 | g****5@g****m | 26 |
| mikechengwei | 8****5@q****m | 24 |
| xushiwei | x****5@h****m | 23 |
| and 301 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 662
- Total pull requests: 1,324
- Average time to close issues: 7 months
- Average time to close pull requests: 2 months
- Total issue authors: 331
- Total pull request authors: 193
- Average comments per issue: 3.27
- Average comments per pull request: 4.98
- Merged pull requests: 679
- Bot issues: 0
- Bot pull requests: 62
Past Year
- Issues: 322
- Pull requests: 867
- Average time to close issues: 19 days
- Average time to close pull requests: 14 days
- Issue authors: 156
- Pull request authors: 116
- Average comments per issue: 1.69
- Average comments per pull request: 4.31
- Merged pull requests: 482
- Bot issues: 0
- Bot pull requests: 51
Top Authors
Issue Authors
- Monokaix (41)
- lowang-bh (38)
- JesseStutler (31)
- wangyang0616 (16)
- feyounger (14)
- hwdef (12)
- william-wang (8)
- yuyue9284 (6)
- bibibox (6)
- mahdikhashan (6)
- kingeasternsun (6)
- dongjiang1989 (6)
- jiangkaihua (5)
- qGentry (5)
- halcyon-r (5)
Pull Request Authors
- Monokaix (173)
- JesseStutler (117)
- lowang-bh (78)
- dependabot[bot] (62)
- googs1025 (48)
- dongjiang1989 (31)
- wangyang0616 (30)
- bibibox (28)
- hwdef (28)
- feyounger (27)
- guoqinwill (26)
- archlitchi (24)
- GautamBytes (24)
- mahdikhashan (24)
- SataQiu (20)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 2
- Total downloads: unknown
- Total docker downloads: 157,758
-
Total dependent packages: 56
(may contain duplicates) -
Total dependent repositories: 73
(may contain duplicates) - Total versions: 99
- Total advisories: 3
proxy.golang.org: volcano.sh/volcano
- Homepage: https://github.com/volcano-sh/volcano
- Documentation: https://pkg.go.dev/volcano.sh/volcano#section-documentation
- License: Apache-2.0
-
Latest release: v1.12.2
published 6 months ago
Rankings
Advisories (2)
proxy.golang.org: github.com/volcano-sh/volcano
- Homepage: https://github.com/volcano-sh/volcano
- Documentation: https://pkg.go.dev/github.com/volcano-sh/volcano#section-documentation
- License: Apache-2.0
-
Latest release: v1.12.2
published 6 months ago
Rankings
Advisories (1)
Dependencies
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/checkout v3 composite
- github/codeql-action/analyze v1 composite
- github/codeql-action/autobuild v1 composite
- github/codeql-action/init v1 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/cache v3 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/setup-java v3 composite
- actions/upload-artifact v2 composite
- docker/setup-buildx-action v2 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-go v4 composite
- docker/login-action v1 composite
- actions/checkout v3 composite
- helm/chart-releaser-action v1.5.0 composite
- volcanosh/vc-scheduler latest build
- ubuntu 22.04 build
- mxnet/python 1.4.0_cpu_mkl_py3 build
- python 2.7 build
- alpine latest build
- golang 1.20.1 build
- alpine latest build
- golang 1.20.1 build
- alpine latest build
- golang 1.20.1 build
- github.com/NYTimes/gziphandler v1.1.1
- github.com/agiledragon/gomonkey/v2 v2.2.0
- github.com/antlr/antlr4/runtime/Go/antlr v1.4.10
- github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
- github.com/beorn7/perks v1.0.1
- github.com/blang/semver/v4 v4.0.0
- github.com/cenkalti/backoff/v4 v4.1.3
- github.com/cespare/xxhash/v2 v2.2.0
- github.com/coreos/go-semver v0.3.0
- github.com/coreos/go-systemd/v22 v22.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/docker/distribution v2.8.2+incompatible
- github.com/elastic/go-elasticsearch/v7 v7.17.7
- github.com/emicklei/go-restful/v3 v3.9.0
- github.com/evanphx/json-patch v4.12.0+incompatible
- github.com/evanphx/json-patch/v5 v5.6.0
- github.com/felixge/httpsnoop v1.0.3
- github.com/fsnotify/fsnotify v1.6.0
- github.com/go-logr/logr v1.2.3
- github.com/go-logr/stdr v1.2.2
- github.com/go-openapi/jsonpointer v0.19.6
- github.com/go-openapi/jsonreference v0.20.1
- github.com/go-openapi/swag v0.22.3
- github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0
- github.com/gogo/protobuf v1.3.2
- github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
- github.com/golang/mock v1.6.0
- github.com/golang/protobuf v1.5.3
- github.com/google/cadvisor v0.47.1
- github.com/google/cel-go v0.12.6
- github.com/google/gnostic v0.5.7-v3refs
- github.com/google/go-cmp v0.5.9
- github.com/google/gofuzz v1.1.0
- github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1
- github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
- github.com/google/uuid v1.3.0
- github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
- github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
- github.com/hashicorp/errwrap v1.0.0
- github.com/hashicorp/go-multierror v1.0.0
- github.com/imdario/mergo v0.3.12
- github.com/inconshreveable/mousetrap v1.0.1
- github.com/josharian/intern v1.0.0
- github.com/json-iterator/go v1.1.12
- github.com/mailru/easyjson v0.7.7
- github.com/matttproud/golang_protobuf_extensions v1.0.2
- github.com/mitchellh/mapstructure v1.5.0
- github.com/moby/sys/mountinfo v0.6.2
- github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
- github.com/modern-go/reflect2 v1.0.2
- github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
- github.com/onsi/ginkgo/v2 v2.9.1
- github.com/onsi/gomega v1.27.4
- github.com/opencontainers/go-digest v1.0.0
- github.com/opencontainers/runc=>github.com/opencontainers/runc v1.0.3
- github.com/opencontainers/selinux v1.10.0
- github.com/pkg/errors v0.9.1
- github.com/pmezard/go-difflib v1.0.0
- github.com/prometheus/client_golang v1.14.0
- github.com/prometheus/client_model v0.3.0
- github.com/prometheus/common v0.37.0
- github.com/prometheus/procfs v0.8.0
- github.com/spf13/cobra v1.6.0
- github.com/spf13/pflag v1.0.5
- github.com/stoewer/go-strcase v1.2.0
- github.com/stretchr/testify v1.8.3
- go.etcd.io/etcd/api/v3 v3.5.7
- go.etcd.io/etcd/client/pkg/v3 v3.5.7
- go.etcd.io/etcd/client/v3 v3.5.7
- go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.35.0
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.35.1
- go.opentelemetry.io/otel v1.10.0
- go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.10.0
- go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.10.0
- go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.10.0
- go.opentelemetry.io/otel/metric v0.31.0
- go.opentelemetry.io/otel/sdk v1.10.0
- go.opentelemetry.io/otel/trace v1.10.0
- go.opentelemetry.io/proto/otlp v0.19.0
- go.uber.org/atomic v1.7.0
- go.uber.org/automaxprocs v1.4.0
- go.uber.org/multierr v1.6.0
- go.uber.org/zap v1.21.0
- golang.org/x/crypto v0.1.0
- golang.org/x/mod v0.9.0
- golang.org/x/net v0.9.0
- golang.org/x/oauth2 v0.7.0
- golang.org/x/sync v0.1.0
- golang.org/x/sys v0.7.0
- golang.org/x/term v0.7.0
- golang.org/x/text v0.9.0
- golang.org/x/time v0.3.0
- golang.org/x/tools v0.7.0
- google.golang.org/appengine v1.6.7
- google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54
- google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9
- google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19
- google.golang.org/grpc v1.54.0
- google.golang.org/grpc=>google.golang.org/grpc v1.57.0
- google.golang.org/protobuf v1.30.0
- gopkg.in/inf.v0 v0.9.1
- gopkg.in/natefinch/lumberjack.v2 v2.0.0
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.1
- k8s.io/api v0.27.2
- k8s.io/api=>k8s.io/api v0.27.2
- k8s.io/apiextensions-apiserver=>k8s.io/apiextensions-apiserver v0.27.2
- k8s.io/apimachinery v0.27.2
- k8s.io/apimachinery=>k8s.io/apimachinery v0.27.2
- k8s.io/apiserver v0.27.2
- k8s.io/apiserver=>k8s.io/apiserver v0.27.2
- k8s.io/cli-runtime=>k8s.io/cli-runtime v0.27.2
- k8s.io/client-go v0.27.2
- k8s.io/client-go=>k8s.io/client-go v0.27.2
- k8s.io/cloud-provider v0.25.0
- k8s.io/cloud-provider=>k8s.io/cloud-provider v0.27.2
- k8s.io/cluster-bootstrap=>k8s.io/cluster-bootstrap v0.27.2
- k8s.io/code-generator v0.27.2
- k8s.io/code-generator=>k8s.io/code-generator v0.27.2
- k8s.io/component-base v0.27.2
- k8s.io/component-base=>k8s.io/component-base v0.27.2
- k8s.io/component-helpers v0.27.2
- k8s.io/component-helpers=>k8s.io/component-helpers v0.27.2
- k8s.io/controller-manager v0.27.2
- k8s.io/controller-manager=>k8s.io/controller-manager v0.27.2
- k8s.io/cri-api=>k8s.io/cri-api v0.27.2
- k8s.io/csi-translation-lib v0.27.2
- k8s.io/csi-translation-lib=>k8s.io/csi-translation-lib v0.27.2
- k8s.io/dynamic-resource-allocation=>k8s.io/dynamic-resource-allocation v0.27.2
- k8s.io/gengo v0.0.0-20220902162205-c0856e24416d
- k8s.io/klog v1.0.0
- k8s.io/klog/v2 v2.90.1
- k8s.io/kms v0.27.2
- k8s.io/kube-aggregator=>k8s.io/kube-aggregator v0.27.2
- k8s.io/kube-controller-manager=>k8s.io/kube-controller-manager v0.27.2
- k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
- k8s.io/kube-proxy=>k8s.io/kube-proxy v0.27.2
- k8s.io/kube-scheduler v0.0.0
- k8s.io/kube-scheduler=>k8s.io/kube-scheduler v0.27.2
- k8s.io/kubectl=>k8s.io/kubectl v0.27.2
- k8s.io/kubelet v0.0.0
- k8s.io/kubelet=>k8s.io/kubelet v0.27.2
- k8s.io/kubernetes v1.27.2
- k8s.io/legacy-cloud-providers=>k8s.io/legacy-cloud-providers v0.27.2
- k8s.io/metrics v0.27.2
- k8s.io/metrics=>k8s.io/metrics v0.27.2
- k8s.io/mount-utils v0.25.0
- k8s.io/mount-utils=>k8s.io/mount-utils v0.27.2
- k8s.io/node-api=>k8s.io/node-api v0.27.2
- k8s.io/pod-security-admission=>k8s.io/pod-security-admission v0.27.2
- k8s.io/sample-apiserver=>k8s.io/sample-apiserver v0.27.2
- k8s.io/sample-cli-plugin=>k8s.io/sample-cli-plugin v0.27.2
- k8s.io/sample-controller=>k8s.io/sample-controller v0.27.2
- k8s.io/utils v0.0.0-20230209194617-a36077c30491
- sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2
- sigs.k8s.io/controller-runtime v0.13.0
- sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
- sigs.k8s.io/structured-merge-diff/v4 v4.2.3
- sigs.k8s.io/yaml v1.3.0
- stathat.com/c/consistent v1.0.0
- volcano.sh/apis v1.8.0-alpha.0.0.20231028020234-1a5aa81107d7
- 1730 dependencies
- actions/checkout v3 composite
- actions/setup-go v4 composite