-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed "index out of bound issue" in describe chaos-scenario command (#90
) * Fixed out of bound issue in describe chaos-scenario command Signed-off-by: Sarthak Jain <[email protected]> * reverted compatibility matrix version changes Signed-off-by: Sarthak Jain <[email protected]> Signed-off-by: Sarthak Jain <[email protected]>
- Loading branch information
1 parent
7f837ac
commit f44e884
Showing
3 changed files
with
19 additions
and
13 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package utils | ||
|
||
var ( | ||
// CompatibilityMatrix to store the compatible versions of litmusctl and ChaosCenter | ||
CompatibilityMatrix = map[string][]string{ | ||
"0.6.0": {"2.2.0", "2.3.0"}, | ||
"0.7.0": {"2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0"}, | ||
"0.8.0": {"2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0"}, | ||
"0.9.0": {"2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0"}, | ||
"0.10.0": {"2.9.0", "2.10.0", "2.11.0", "2.12.0"}, | ||
"0.11.0": {"2.9.0", "2.10.0", "2.11.0", "2.12.0"}, | ||
"0.12.0": {"2.9.0", "2.10.0", "2.11.0", "2.12.0"}, | ||
} | ||
) |
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