Skip to content

Commit e8528a4

Browse files
authored
Add initial integration of Volcano (#13235)
This PR adds initial integration of Volcano. Volcano is a cloud-native batch scheduling system for Kubernetes hosted by the CNCF. It is used by companies such as Huawei, Baidu, JD.com. Signed-off-by: Adam Korczynski <[email protected]>
1 parent 41910ee commit e8528a4

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

projects/volcano/Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
################################################################################
16+
17+
FROM gcr.io/oss-fuzz-base/base-builder-go
18+
RUN git clone --depth 1 https://github.com/volcano-sh/volcano
19+
WORKDIR volcano
20+
COPY build.sh $SRC/

projects/volcano/build.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash -eu
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
################################################################################
17+
18+
./hack/oss-fuzz-build.sh

projects/volcano/project.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
homepage: "https://volcano.sh/"
2+
language: go
3+
primary_contact: "[email protected]"
4+
main_repo: "https://github.com/volcano-sh/volcano"
5+
auto_ccs:
6+
7+
fuzzing_engines:
8+
- libfuzzer
9+
sanitizers:
10+
- address

0 commit comments

Comments
 (0)