-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor(experiments): Refactor litmus go experiments (#29) Signed-off-by: Udit Gaurav <[email protected]> * feat(experiments): Add pod memory hog experiment (#31) Signed-off-by: Udit Gaurav <[email protected]> * refactor(go-experiments): separate the types.go file for each experiment (#34) Signed-off-by: shubhamchaudhary <[email protected]> * update(contribution-guide): updating contribution guide according to new schema changes (#35) Signed-off-by: shubhamchaudhary <[email protected]> * chore(experiment): Add pod network duplication experiment in generic experiments of LitmusChaos (#27) * chore(experiment): Add pod network duplication experiment in generic experiments of LitmusChaos Signed-off-by: Udit Gaurav <[email protected]> * bug(fix): Add for summary event and getting target container name (#37) Signed-off-by: Udit Gaurav <[email protected]> * bug(fix): Remove extra index from the list in pod duplication experiment (#38) Signed-off-by: Udit Gaurav <[email protected]> Co-authored-by: Shubham Chaudhary <[email protected]>
- Loading branch information
1 parent
8d6cc4b
commit 25bea8a
Showing
35 changed files
with
1,750 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# Building go binaries for pod_delete experiment | ||
go build -o build/_output/pod-delete ./experiments/generic/pod-delete | ||
# Building go binaries for cpu_hog experiment | ||
go build -o build/_output/cpu-hog ./experiments/generic/cpu-hog | ||
# Building go binaries for pod_cpu_hog experiment | ||
go build -o build/_output/pod-cpu-hog ./experiments/generic/pod-cpu-hog | ||
# Building go binaries for pod_memory_hog experiment | ||
go build -o build/_output/pod-memory-hog ./experiments/generic/pod-memory-hog | ||
# Buiding go binaries for pod_network_duplication experiment | ||
go build -o build/_output/pod-network-duplication ./experiments/generic/pod-network-duplication | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.