33 lines
811 B
YAML
33 lines
811 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: fifa2026-alert-worker
|
|
namespace: fifa2026
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: fifa2026-alert-worker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: fifa2026-alert-worker
|
|
spec:
|
|
containers:
|
|
- name: worker
|
|
image: ghcr.io/your-org/2026fifa-alerts:latest
|
|
env:
|
|
- name: REDIS_URL
|
|
value: redis://fifa2026-redis:6379/0
|
|
- name: TELEGRAM_BOT_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: fifa2026-secrets
|
|
key: TELEGRAM_BOT_TOKEN
|
|
- name: TELEGRAM_CHAT_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: fifa2026-secrets
|
|
key: TELEGRAM_CHAT_ID
|
|
|