Deploys Nextcloud with an FPM-alpine image and Caddy sidecar for web serving. Integrates an external CloudNativePG cluster for PostgreSQL database. Utilizes an external Valkey instance for caching. Configures S3-compatible object storage for file data. Includes an initialization job to create admin and Valkey secrets. Sets up Ingress for external access with TLS via cert-manager.
30 lines
625 B
YAML
30 lines
625 B
YAML
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
annotations:
|
|
a8r.io/repository: ssh://git@git.tr1ceracop.de:222/gitea_admin/k8s-and-chill.git
|
|
name: nextcloud-cnpg
|
|
namespace: nextcloud
|
|
spec:
|
|
bootstrap:
|
|
initdb:
|
|
database: nextcloud
|
|
owner: nextcloud
|
|
instances: 2
|
|
postgresql:
|
|
parameters:
|
|
effective_cache_size: 128MB
|
|
maintenance_work_mem: 32MB
|
|
max_connections: "100"
|
|
shared_buffers: 64MB
|
|
work_mem: 4MB
|
|
resources:
|
|
limits:
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
storage:
|
|
size: 5Gi
|
|
storageClass: hcloud-volumes
|