Reset git history for making manifests public

This commit is contained in:
2026-05-31 22:25:38 +02:00
commit 3dbb863df7
411 changed files with 42163 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
name: valkey
namespace: immich
spec:
selector:
app: valkey
type: ClusterIP
ports:
- name: valkey-port
protocol: TCP
port: 6379
targetPort: 6379

28
immich/valkey/valkey.yaml Normal file
View File

@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: immich
name: valkey
spec:
replicas: 1
selector:
matchLabels:
app: valkey
template:
metadata:
labels:
app: valkey
spec:
restartPolicy: Always
containers:
- name: valkey
image: valkey/valkey:9
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "256Mi"
cpu: "200m"
ports:
- containerPort: 6379