ConfigDirectory returns the absolute path to $PGDATA for cluster. - https://www.postgresql.org/docs/current/runtime-config-file-locations.html
(cluster *v1beta1.PostgresCluster)
| 116 | // ConfigDirectory returns the absolute path to $PGDATA for cluster. |
| 117 | // - https://www.postgresql.org/docs/current/runtime-config-file-locations.html |
| 118 | func ConfigDirectory(cluster *v1beta1.PostgresCluster) string { |
| 119 | return DataDirectory(cluster) |
| 120 | } |
| 121 | |
| 122 | // DataDirectory returns the absolute path to the "data_directory" of cluster. |
| 123 | // - https://www.postgresql.org/docs/current/runtime-config-file-locations.html |