Files
wild-directory/supabase/versions/1/deployment-meta.yaml
Paul Payne 4d983819c9 feat(supabase): add services and statefulset for database management
feat(synapse): update ingress to use traefik ingress class and bump version

feat(syncthing-discovery): introduce syncthing discovery service with deployment and ingress

feat(syncthing-relay): add syncthing relay server with deployment and ingress configuration

fix(taiga): update liveness and readiness probes to use tcpSocket for health checks

fix(taiga): change PVC access mode to ReadWriteMany for media and static storage

feat(traefik): add icon and ignore rules for traefik service

docs(ushahidi): add notes for Redis configuration and Laravel startup probe adjustments

feat(ushahidi): implement dedicated Redis deployment for Ushahidi

fix(vllm): update deployment strategy and readiness/liveness probes for improved stability

fix(writefreely): pin writefreely image version to v0.15.1 for consistency

docs(zulip): add notes for TLS-terminating reverse proxy configuration and expected behavior
2026-07-02 21:34:27 +00:00

61 lines
1.6 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: supabase-meta
spec:
replicas: 1
selector:
matchLabels:
component: meta
template:
metadata:
labels:
component: meta
spec:
containers:
- name: meta
image: supabase/postgres-meta:v0.96.6
ports:
- containerPort: 8080
env:
- name: PG_META_PORT
value: "8080"
- name: PG_META_DB_HOST
value: "{{ .db.host }}"
- name: PG_META_DB_PORT
value: "5432"
- name: PG_META_DB_NAME
value: "{{ .db.name }}"
- name: PG_META_DB_USER
value: "{{ .db.user }}"
- name: PG_META_DB_PASSWORD
valueFrom:
secretKeyRef:
name: supabase-secrets
key: dbPassword
- name: CRYPTO_KEY
valueFrom:
secretKeyRef:
name: supabase-secrets
key: pgMetaCryptoKey
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
failureThreshold: 3
resources:
requests:
memory: 128Mi
cpu: 50m