-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enable add pod log queries * lint
- Loading branch information
Showing
11 changed files
with
101 additions
and
102 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 |
---|---|---|
|
@@ -53,7 +53,14 @@ For cluster administrators | |
- [Grafana, Loki](https://grafana.com/) - Visualizations for metrics/logging solution. | ||
|
||
|
||
|
||
## Community & Support | ||
- [Discord](https://discord.com/invite/HQUBJSVgAP) | ||
- [email protected] | ||
|
||
## Contributor Guide | ||
|
||
Format your code with | ||
``` | ||
poetry install --with dev | ||
bash format.sh | ||
``` |
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
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,39 +1,49 @@ | ||
KONDUKTOR_CONTROLLER_VERSION = "0.1.0" | ||
|
||
HARDWARE_XID_ERRORS = ( | ||
48, | ||
*range(56, 59), | ||
*range(62, 65), | ||
*range(68, 78), | ||
*range(79, 87), | ||
*range(88, 90), | ||
92, | ||
*range(94, 106), | ||
*range(110, 121), | ||
*range(122, 126), | ||
HARDWARE_XID_ERRORS = set( | ||
( | ||
48, | ||
*range(56, 59), | ||
*range(62, 65), | ||
*range(68, 78), | ||
*range(79, 87), | ||
*range(88, 90), | ||
92, | ||
*range(94, 106), | ||
*range(110, 121), | ||
*range(122, 126), | ||
) | ||
) | ||
|
||
# The set of all SXid error ids that are known to be harmless. | ||
# See D.4 of https://docs.nvidia.com/datacenter/tesla/pdf/fabric-manager-user-guide.pdf | ||
WHITELISTED_NVSWITCH_SXID_ERRORS = [ | ||
11012, | ||
11021, | ||
11022, | ||
11023, | ||
12021, | ||
12023, | ||
15008, | ||
15011, | ||
19049, | ||
19055, | ||
19057, | ||
19059, | ||
19062, | ||
19065, | ||
19068, | ||
19071, | ||
24001, | ||
24002, | ||
24003, | ||
22013, | ||
ALLOWLISTED_NVSWITCH_SXID_ERRORS = set( | ||
( | ||
11012, | ||
11021, | ||
11022, | ||
11023, | ||
12021, | ||
12023, | ||
15008, | ||
15011, | ||
19049, | ||
19055, | ||
19057, | ||
19059, | ||
19062, | ||
19065, | ||
19068, | ||
19071, | ||
24001, | ||
24002, | ||
24003, | ||
22013, | ||
) | ||
) | ||
|
||
|
||
POD_LOG_ERROR_REGEXES = [ | ||
# possibly indicates degraded nvidia-FM in bad state | ||
r"`invalid device ordinal`", | ||
] |
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
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
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
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