Problem with POD “dxi-postgresql-7xxxxxxxx-sfg6m”, status in “CrashLoopBackOff”
It seems like issue is due to the permissions on pg-data under postgres install on NFS file system.
Following steps resolved the issue:
kubectl --replicas=0 deployment <postgres-deploymentname> -n dxi
changed permission:
chown -cR 26:26 pg-data
kubectl --replicas=1 deployment <postgres-deploymentname> -n dxi