Cloud Native PostgreSQL
It's hard to build modern applications without a database. I prefer PostgreSQL and this is the operator that will help setup a clustered PostgreSQL installation in Kubernetes
Installation
kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.27/releases/cnpg-1.27.1.yaml
The Actual Cluster
You will want to use a good and fast network attached storage to keep database performance high. I'm using iSCIS here.
kubectl create namespace db
---
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: postgresql
namespace: db
spec:
instances: 3
postgresql:
parameters:
shared_buffers: "256MB"
storage:
size: 10G
storageClass: iscsi
resources:
requests:
memory: "1024Mi"
cpu: 500m
limits:
memory: "4096Mi"
cpu: 2000m