-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add elasticsearch stack to github actions * added kind config to map nodeports and removed portforwarding remove node settings added authentication added auth * push alerts to elastic search push alerts to elastic search elastic env in action nit echo nit test test lint fix * push metrics to elastic search metric structure change added upload_metric * push telemetry to elastic + refactoring remove warning fixed model error added module export from elastic models namespace minor checks minor checks changed method name fix tests changed check on metric type reduced elastic log level float casting fixed telemetry model minor nits test fix poetry.lock * export modules lint * taint constructor update * metrics model refactoring lint * elastic library log level * downgraded elastic search to 7.x fix --------- Signed-off-by: Tullio Sebastiani <[email protected]>
- Loading branch information
1 parent
aceeef4
commit 32dfb12
Showing
14 changed files
with
953 additions
and
115 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,9 @@ | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
extraPortMappings: | ||
- containerPort: 30000 | ||
hostPort: 9090 | ||
- containerPort: 32766 | ||
hostPort: 9091 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 @@ | ||
from .krkn_elastic import * # NOQA |
Oops, something went wrong.