An app that helps you monitor your Kubernetes cluster, debug critical deployments & gives recommendations for standard practices
Go to file
Prasad Ghangal 11b57d7a2b
Remove travis CI integration (#281)
##### ISSUE TYPE
 - Feature Pull Request


##### SUMMARY
Since we have github actions in place, we can get rid of travis CI
2020-05-14 13:13:43 +05:30
.github Remove travis CI integration (#281) 2020-05-14 13:13:43 +05:30
build Add license headers to source files (#266) 2020-04-27 09:20:16 +05:30
cmd/botkube Refactor notifier and bot to pass config 2020-05-01 13:47:37 +00:00
design Added support for Mattermost 2019-04-04 16:31:53 +05:30
hack Fixes #179: Migration of current travis ci to github-actions ci. (#244) 2020-05-14 10:32:03 +05:30
helm/botkube add tolerations in the deployment.yaml template 2020-05-05 06:08:28 +00:00
pkg Refactor notifier and bot to pass config 2020-05-01 13:47:37 +00:00
test Configure default namespace for kubectl cmds through config 2020-05-01 13:38:10 +00:00
.gitignore Added restrictAccess flag to restrict BotKube command execution 2020-01-01 18:10:25 +05:30
.mergify.yml Remove travis CI integration (#281) 2020-05-14 13:13:43 +05:30
.release Release v0.10.0 2020-04-27 09:58:06 +05:30
botkube_arch.jpg Update BotKube architecture diagram (#263) 2020-04-23 10:36:58 +05:30
botkube-title.jpg Added image 2019-01-24 15:23:48 +05:30
CHANGELOG.md Release v0.10.0 2020-04-27 09:58:06 +05:30
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2019-03-01 14:25:34 +05:30
comm_config.yaml Pass communication settings as a k8s secret (#233) 2019-12-22 18:31:49 +05:30
CONTRIBUTING.md Update CONTRIBUTE.md to work with the latest changes (#237) 2019-12-23 23:20:49 +05:30
deploy-all-in-one-tls.yaml Configure default namespace for kubectl cmds through config 2020-05-01 13:38:10 +00:00
deploy-all-in-one.yaml Configure default namespace for kubectl cmds through config 2020-05-01 13:38:10 +00:00
go.mod Add support for jsonpath in updateSetting 2020-01-09 19:15:43 +05:30
go.sum Add support for jsonpath in updateSetting 2020-01-09 19:15:43 +05:30
LICENSE Add license headers to source files (#266) 2020-04-27 09:20:16 +05:30
Makefile Use infracloudio/botkube repo for docker images 2019-09-30 14:35:27 +05:30
README.md Remove travis CI integration (#281) 2020-05-14 13:13:43 +05:30
resource_config.yaml Configure default namespace for kubectl cmds through config 2020-05-01 13:38:10 +00:00

BotKube

CI Go Report Card BotKube website GoDoc Release Version

For complete documentation visit www.botkube.io

BotKube integration with Slack or Mattermost helps you monitor your Kubernetes cluster, debug critical deployments and gives recommendations for standard practices by running checks on the Kubernetes resources. You can also ask BotKube to execute kubectl commands on k8s cluster which helps debugging an application or cluster.

Getting started

Please follow this for complete BotKube installation guide.

Architecture

  • Informer Controller: Registers informers to kube-apiserver to watch events on the configured k8s resources. It forwards the incoming k8s event to the Event Manager
  • Event Manager: Extracts required fields from k8s event object and creates a new BotKube event struct. It passes BotKube event struct to the Filter Engine
  • Filter Engine: Takes the k8s object and BotKube event struct and runs Filters on them. Each filter runs some validations on the k8s object and modifies the messages in the BotKube event struct if required.
  • Event Notifier: Finally, notifier sends BotKube event over the configured communication channel.
  • Bot Interface: Bot interface takes care of authenticating and managing connections with communication mediums like Slack, Mattermost. It reads/sends messages from/to commucation mediums.
  • Executor: Executes BotKube or kubectl command and sends back the result to the Bot interface.

Visit www.botkube.io for Configuration, Usage and Examples.