DEV Community

Cover image for Using Helm Install Botkube Integrate With Slack On EKS
πŸš€ Vu Dao πŸš€
πŸš€ Vu Dao πŸš€

Posted on

Using Helm Install Botkube Integrate With Slack On EKS

botkube.io
Github repo
Alt Text

1. Install botkube

helm install --version v0.11.0 --name botkube --namespace botkube \
  --set communications.slack.enabled=true \
  --set communications.slack.channel=botkube-channel \
  --set communications.slack.token=xoxb-123456 \
  --set config.settings.clustername=prod-us-east-1 \
  --set config.settings.allowkubectl=true \
  --set image.repository=infracloudio/botkube \
  --set image.tag=v0.11.0 \
  infracloudio/botkube
Enter fullscreen mode Exit fullscreen mode

2. Check the pod with namespace botkube

kubectl get pod -n botkube 
NAME                       READY   STATUS    RESTARTS   AGE
botkube-6b46496f87-xmjk8   1/1     Running   0          45h
Enter fullscreen mode Exit fullscreen mode

3. Use slack to interact with botkube

  • It requires to add BotKube into app of slack workspace
    Alt Text

  • Get pod through slack
    Alt Text

Top comments (0)