Files
2026FIFAWorldCup/platform/deploy/k3s/redis-deployment.yaml

35 lines
588 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: fifa2026-redis
namespace: fifa2026
spec:
replicas: 1
selector:
matchLabels:
app: fifa2026-redis
template:
metadata:
labels:
app: fifa2026-redis
spec:
containers:
- name: redis
image: redis:7-alpine
imagePullPolicy: IfNotPresent
ports:
- containerPort: 6379
---
apiVersion: v1
kind: Service
metadata:
name: fifa2026-redis
namespace: fifa2026
spec:
selector:
app: fifa2026-redis
ports:
- port: 6379
targetPort: 6379