30 lines
676 B
YAML
30 lines
676 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
name: redis
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: redis
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
spec:
|
|
containers:
|
|
- image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672
|
|
name: immich-redis
|
|
resources:
|
|
limits:
|
|
cpu: "0.1"
|
|
memory: "250G"
|
|
ports:
|
|
- name: http
|
|
containerPort: 6379
|
|
hostPort: 6379
|
|
protocol: TCP
|
|
restartPolicy: Always |