Fix kustomization: remove shelfmark/docuseal, recreate affine gateway files

This commit is contained in:
2026-06-02 19:32:03 +02:00
parent d7bf168d17
commit cb7ec67524
15 changed files with 372 additions and 14 deletions

View File

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

28
affine/redis/redis.yaml Normal file
View File

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