25 lines
513 B
YAML
25 lines
513 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: bot-deployment
|
|
namespace: botspace
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: bot
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: bot
|
|
spec:
|
|
containers:
|
|
- name: hate-speech-bot
|
|
image: tetianamohorian/hate-speech-bot:latest
|
|
env:
|
|
- name: TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: bot-secret
|
|
key: TOKEN
|