A project to send OpenShift error messages to a telegram channel/group of your choice.
First create a Telegram Bot.
Then deploy this bot to OpenShift with permissions via:
$ oc adm policy add-cluster-role-to-user cluster-reader system:serviceaccount:<current-project-here>:default --as=system:admin
$ oc new-app -f https://raw.githubusercontent.com/dinhnn/openshift-telegram-notifications/master/template.yaml \
-p TELEGRAM_API_URL=https://api.telegram.org \
-p TELEGRAM_BOT_TOKEN=<bot-token> \
-p TELEGRAM_BOT_CHANNEL=<chat_id of channel or group> \
-p OPENSHIFT_CONSOLE_URL=https://<openshift-host-here>:8443/console
$ oc start-build openshift-telegram-notifications
Once the app is built and deployed, it will start sending notifications to slack when there are Warning
type events.
First you need a running minishift cluster. This can be installed via homebrew:
$ brew install socat openshift-cli docker-machine-driver-xhyve
$ brew tap caskroom/versions
$ brew cask install minishift-beta
The xhyve hypervisor requires superuser privileges. To enable, execute:
$ sudo chown root:wheel /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
$ sudo chmod u+s /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
Then start the cluster with:
$ minishift start --memory 4048
First add the privileges to mount volumes and read cluster state to your service account:
$ oc login -u system:admin
$ oc adm policy add-scc-to-user hostmount-anyuid system:serviceaccount:myproject:default --as=system:admin
$ oc adm policy add-cluster-role-to-user cluster-reader system:serviceaccount:myproject:default --as=system:admin