Skip to content

Commit c89abc3

Browse files
authored
[Litmus]: Added initial integration (#11608)
[Litmus](https://litmuschaos.io/) is an open source Chaos Engineering platform that enables teams to identify weaknesses & potential outages in infrastructures by inducing chaos tests in a controlled way. Developers & SREs can simply execute Chaos Engineering with Litmus as it is easy to use, based on modern chaos engineering practices & community collaborated. Litmus is 100% open source & CNCF-incubated. Github repo: https://github.com/litmuschaos/litmus Documentation: https://docs.litmuschaos.io/ Signed-off-by: Saranya-jena <[email protected]>
1 parent 5f59b12 commit c89abc3

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

projects/litmuschaos/Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright 2024 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 https://github.com/litmuschaos/litmus.git
19+
RUN cp $SRC/litmus/chaoscenter/fuzz_build.sh $SRC/build.sh
20+
WORKDIR $SRC/litmus

projects/litmuschaos/project.yaml

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

0 commit comments

Comments
 (0)