You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When specifying a different PGDATA path value (ex: attaching another volume to /pgdata), worker nodes will get an error on startup because the postgres user does not own the directory.
The coordinator node handles this fine because it changes the directory's ownership automatically.
Prepending wait-for-manager.sh with chown -R postgres "$PGDATA" fixes the issue.
The text was updated successfully, but these errors were encountered:
When specifying a different PGDATA path value (ex: attaching another volume to /pgdata), worker nodes will get an error on startup because the postgres user does not own the directory.
The coordinator node handles this fine because it changes the directory's ownership automatically.
Prepending wait-for-manager.sh with
chown -R postgres "$PGDATA"
fixes the issue.The text was updated successfully, but these errors were encountered: