https://github.com/kairen/line-bot-operator
An operator deploys/manages/configures LINE bot atop Kubernetes.
https://github.com/kairen/line-bot-operator
Last synced: about 2 months ago
JSON representation
An operator deploys/manages/configures LINE bot atop Kubernetes.
- Host: GitHub
- URL: https://github.com/kairen/line-bot-operator
- Owner: kairen
- License: apache-2.0
- Created: 2019-02-20T11:05:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-22T18:19:14.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T06:11:30.646Z (7 months ago)
- Language: Go
- Size: 290 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/kubedev/line-bot-operator) [](https://codecov.io/gh/kubedev/line-bot-operator) [](https://hub.docker.com/r/kubedev/line-bot-operator/) 
# LINE Bot Operator
An operator provides LINE bot that makes it easy to deploy on Kubernetes.## Concepts
This operator has three fundamental concepts:
* **Bot** defines the desired spec of the Bot deployment.
* **Event** defines eventing rules for a bot instance.
* **EventBinding** defines the set of events to be used by the bot. You select Events to be bound using labels and label selectors.## Building from Source
Clone repo into your go path under `$GOPATH/src`:
```sh
$ git clone https://github.com/kairen/line-bot-operator.git $GOPATH/src/github.com/kairen/line-bot-operator
$ cd $GOPATH/src/github.com/kairen/line-bot-operator
$ make dep
$ make
```