mirror of
https://github.com/outbackdingo/homelab.git
synced 2026-01-28 18:19:16 +00:00
* [rehaul] added components directory * [rehaul] improved networking argocd section * [rehaul] improved monitoring argocd section * [rehaul] improved mlops argocd section * [rehaul] removed matrix argocd section * [rehaul] improved home argocd section * [rehaul] improved data argocd section * [rehaul] improved argocd base files * [rehaul] improved projects argocd section * [rehaul] improved services argocd section * [rehaul] improved utilities argocd section * [rehaul] improved argocd overlay section * [rehaul] added mayastor files * [rehaul] removed metabase from data apps * [rehaul] changed sc from iscsi to mayastor * [rehaul] added mysql-operator * [rehaul] improved postgres-related operator resources * [rehaul] removed matrix-related PVCs * [rehaul] renamed repoURL reference * [rehaul] removed kustomize components @rss-hub * [rehaul] improved home-assistant related resources * [rehaul] added 4get service related resources * [rehaul] removed deprecated service resources * [rehaul] removed utilities related resources * [rehaul] improved CI GHA validation steps * [rehaul] improved nvidia cluster driver * [rehaul] removed deprecated services * [rehaul] removed networking related resources * [rehaul] removed rss related services * [rehaul] fixed yaml linter error * [rehaul] updated readme docs URIs * [rehaul] removed GHA linters to check URis readme * [rehaul] fixed README docs typo * [rehaul] removed deprecated services from README docs * [rehaul] removed reloader annotations * [rehaul] updated mlops resources * [rehaul] updated utilities related resources * [rehaul] updated tailscale related resources * [rehaul] removed RSS services * [rehaul] updated cert-manager related resources * [rehaul] updated tailscale related resources * [rehaul] updated README description * [rehaul] updated PVCs storage
39 lines
806 B
YAML
39 lines
806 B
YAML
---
|
|
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
name: database
|
|
spec:
|
|
imageName: ghcr.io/cloudnative-pg/postgresql:16.0
|
|
instances: 1
|
|
startDelay: 60
|
|
stopDelay: 60
|
|
resources:
|
|
requests:
|
|
memory: 512Mi
|
|
cpu: 300m
|
|
limits:
|
|
memory: 512Mi
|
|
cpu: 300m
|
|
primaryUpdateStrategy: unsupervised
|
|
postgresql:
|
|
parameters:
|
|
shared_buffers: 64MB
|
|
timezone: America/Sao_Paulo
|
|
pg_stat_statements.max: "1000"
|
|
pg_stat_statements.track: all
|
|
auto_explain.log_min_duration: 10s
|
|
pg_hba:
|
|
- host all all 10.244.0.0/16 md5
|
|
bootstrap:
|
|
initdb:
|
|
database: example
|
|
owner: example
|
|
storage:
|
|
storageClass: example-csi-class
|
|
size: 1Gi
|
|
monitoring:
|
|
enablePodMonitor: true
|
|
nodeMaintenanceWindow:
|
|
reusePVC: true
|