An open API service indexing awesome lists of open source software.

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.

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
```