37 lines
668 B
YAML
37 lines
668 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: desubot
|
|
labels:
|
|
app: desubot
|
|
annotations:
|
|
reloader.stakater.com/auto: "true"
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: desubot
|
|
replicas: 1
|
|
strategy:
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: desubot
|
|
spec:
|
|
nodeSelector:
|
|
kubernetes.io/hostname: master.tail2fe2d.ts.net
|
|
containers:
|
|
- name: desubot
|
|
image: 'ultradesu/desubot:latest'
|
|
imagePullPolicy: Always
|
|
envFrom:
|
|
- secretRef:
|
|
name: desubot
|
|
env:
|
|
- name: RUST_LOG
|
|
value: "info"
|
|
|
|
|
|
|