https://github.com/theopenconversationkit/tock-k8s
Kubernetes implementation and resources for Tock.
https://github.com/theopenconversationkit/tock-k8s
bot k8s kubernetes tock
Last synced: 11 months ago
JSON representation
Kubernetes implementation and resources for Tock.
- Host: GitHub
- URL: https://github.com/theopenconversationkit/tock-k8s
- Owner: theopenconversationkit
- License: gpl-3.0
- Created: 2020-09-07T11:02:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T09:12:50.000Z (almost 2 years ago)
- Last Synced: 2025-03-27T23:41:54.006Z (about 1 year ago)
- Topics: bot, k8s, kubernetes, tock
- Language: Shell
- Homepage: https://doc.tock.ai
- Size: 43 KB
- Stars: 2
- Watchers: 7
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tock-k8s
Kubernetes implementation and resources for Tock.
## Deploying Tock Studio on localhost with kind
[kind](https://kind.sigs.k8s.io/) is a tool for running local Kubernetes clusters using Docker container “nodes”.
```sh
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.8.1/kind-linux-amd64
chmod +x ./kind
./create-kind-cluster.sh
./start-with-kind.sh
```
Notice : All data are stored in "tock-mongo-data/" folder
All services are deployed with "tock" namespace
## Logs
```
kubectl logs -f -l type=mongo
```
```
kubectl logs -f -l type=tock-studio
```
```
kubectl logs -f -l type=bot-api
```
## Stopping TOCK STUDIO
```
./stop-with-kind.sh
```
## Destroy your kind cluster
```
./kind delete cluster
```