2026-02-28 13:42:27 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: StatefulSet
|
|
|
|
|
metadata:
|
|
|
|
|
name: seaweedfs-volume
|
|
|
|
|
namespace: storage
|
|
|
|
|
spec:
|
|
|
|
|
serviceName: seaweedfs-volume
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: seaweedfs-volume
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
app: seaweedfs-volume
|
|
|
|
|
spec:
|
2026-03-22 19:48:36 +00:00
|
|
|
terminationGracePeriodSeconds: 60
|
2026-02-28 13:42:27 +00:00
|
|
|
containers:
|
|
|
|
|
- name: volume
|
|
|
|
|
image: chrislusf/seaweedfs:latest
|
|
|
|
|
args:
|
|
|
|
|
- volume
|
|
|
|
|
- -port=8080
|
|
|
|
|
- -mserver=seaweedfs-master.storage.svc.cluster.local:9333
|
|
|
|
|
- -dir=/data
|
|
|
|
|
- -max=50
|
|
|
|
|
ports:
|
|
|
|
|
- name: http
|
|
|
|
|
containerPort: 8080
|
|
|
|
|
protocol: TCP
|
|
|
|
|
- name: grpc
|
|
|
|
|
containerPort: 18080
|
|
|
|
|
protocol: TCP
|
|
|
|
|
volumeMounts:
|
|
|
|
|
- name: data
|
|
|
|
|
mountPath: /data
|
|
|
|
|
resources:
|
|
|
|
|
limits:
|
2026-03-22 19:48:36 +00:00
|
|
|
memory: 1Gi
|
2026-02-28 13:42:27 +00:00
|
|
|
requests:
|
2026-03-22 19:48:36 +00:00
|
|
|
memory: 256Mi
|
2026-02-28 13:42:27 +00:00
|
|
|
cpu: 50m
|
|
|
|
|
volumeClaimTemplates:
|
|
|
|
|
- metadata:
|
|
|
|
|
name: data
|
|
|
|
|
spec:
|
|
|
|
|
accessModes: ["ReadWriteOnce"]
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
feat: La Suite email/messages, buildkitd, monitoring, vault and storage updates
- Add Messages (email) service: backend, frontend, MTA in/out, MPA, SOCKS
proxy, worker, DKIM config, and theme customization
- Add Collabora deployment for document collaboration
- Add Drive frontend nginx config and values
- Add buildkitd namespace for in-cluster container builds
- Add SeaweedFS remote sync and additional S3 buckets
- Update vault secrets across namespaces (devtools, lasuite, media,
monitoring, ory, storage) with expanded credential management
- Update monitoring: rename grafana→metrics OAuth2Client, add Prometheus
remote write and additional scrape configs
- Update local/production overlays with resource patches
- Remove stale login-ui resource patch from production overlay
2026-03-10 19:00:57 +00:00
|
|
|
storage: 400Gi
|
2026-02-28 13:42:27 +00:00
|
|
|
---
|
|
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Service
|
|
|
|
|
metadata:
|
|
|
|
|
name: seaweedfs-volume
|
|
|
|
|
namespace: storage
|
|
|
|
|
spec:
|
|
|
|
|
selector:
|
|
|
|
|
app: seaweedfs-volume
|
|
|
|
|
clusterIP: None
|
|
|
|
|
ports:
|
|
|
|
|
- name: http
|
|
|
|
|
port: 8080
|
|
|
|
|
targetPort: 8080
|
|
|
|
|
- name: grpc
|
|
|
|
|
port: 18080
|
|
|
|
|
targetPort: 18080
|