29 lines
627 B
YAML
29 lines
627 B
YAML
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
name: osm-postgresql
|
|
spec:
|
|
instances: 1
|
|
imageName: ghcr.io/cloudnative-pg/postgis:18-3.6-system-trixie
|
|
|
|
bootstrap:
|
|
initdb:
|
|
owner: osm
|
|
database: osm
|
|
|
|
postInitTemplateSQL:
|
|
- CREATE EXTENSION postgis;
|
|
# - CREATE EXTENSION postgis_topology;
|
|
# - CREATE EXTENSION fuzzystrmatch;
|
|
# - CREATE EXTENSION postgis_tiger_geocoder;
|
|
# - CREATE EXTENSION hstore;
|
|
|
|
|
|
storage:
|
|
size: 10Gi
|
|
pvcTemplate:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: nfs-client
|
|
volumeMode: Filesystem
|