Persistent Storage in Kubernetes does not persist data

10/23/2019

In my Kubernetes cluster, on my DB container, my persistent storage (dynamically provisioned on Digital Ocean) does not persist the storage if the pod is deleted.

I have changed the reclaim policy of the storage from Delete to Retain but this does not make a difference.

This is a copy of DB YAML file:

apiVersion: v1
kind: Service
metadata:
  name: db
  namespace: hm-namespace01
    app: app1
spec:
  type: NodePort
  ports:
   - port: 5432
  selector:
   app: app1

---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: hm-pv-claim
  namespace: hm-namespace01
  labels:
    app: app1
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 5Gi
  storageClassName: do-block-storage

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: app1
  namespace: hm-namespace01
  labels:
    app: app1
spec:
  selector:
    matchLabels:
      app: app1
      tier: backend
  strategy:
    type: Recreate
  template:
    metadata:
      labels:
        app: app1
        tier: backend
    spec:
      containers:
        - name: app1
          image: postgres:11
          imagePullPolicy: "IfNotPresent"
          ports:
            - containerPort: 5432
          volumeMounts:
          - name: postgredb
            mountPath: /var/lib/postgresql

      volumes:
        - name: postgredb
          persistentVolumeClaim:
            claimName: hm-pv-claim
-- Rutnet
kubernetes
kubernetes-pod
persistent-volume-claims

1 Answer

10/23/2019

You must match your mountPath with the Postgres PGDATA environment variable.

The default value of PGDATA is /var/lib/postgresql/data (not /var/lib/postgresql).

You need to either adjust your mountPath or set the PGDATA env to match it.

-- Eduardo Baitello
Source: StackOverflow