Cluster-local object store for build artifacts (CLI binaries etc.) so Docker builds don't depend on flaky external downloads. - Single-node Garage v1.0.1 StatefulSet (LMDB, replication=1) - Metadata on longhorn-nvme (1Gi), data on longhorn HDD (20Gi) - S3 API at garage.platform.svc:3900 - External ingress at s3.coreworlds.io (internal-only) - SealedSecret for admin token and RPC secret
21 lines
320 B
YAML
21 lines
320 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: garage
|
|
namespace: platform
|
|
labels:
|
|
app: garage
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 3900
|
|
targetPort: 3900
|
|
protocol: TCP
|
|
name: s3-api
|
|
- port: 3903
|
|
targetPort: 3903
|
|
protocol: TCP
|
|
name: admin
|
|
selector:
|
|
app: garage
|