stack.basicstack.de/apps/directus/directus-service.yaml
CTO Agent a309c6873c Add complete Directus configuration and update to v12.1.1
Moved Directus deployment configuration from k8s cluster to Git repository:
- Main Directus deployment updated to v12.1.1
- PostgreSQL deployment (postgres:16-alpine)
- Services for both Directus and PostgreSQL
- Ingress with TLS/cert-manager
- Backup CronJob (daily at 2 AM)
- PVCs for database and uploads

This enables GitOps management via Argo CD.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-07-25 13:45:47 +00:00

17 lines
256 B
YAML

apiVersion: v1
kind: Service
metadata:
name: directus
namespace: directus
labels:
app: directus
component: app
spec:
type: ClusterIP
selector:
app: directus
component: app
ports:
- name: http
port: 80
targetPort: 8055