WALVolumeMount returns the name and mount path of the PostgreSQL WAL volume.
()
| 33 | |
| 34 | // WALVolumeMount returns the name and mount path of the PostgreSQL WAL volume. |
| 35 | func WALVolumeMount() corev1.VolumeMount { |
| 36 | return corev1.VolumeMount{Name: "postgres-wal", MountPath: walMountPath} |
| 37 | } |
| 38 | |
| 39 | // DownwardAPIVolumeMount returns the name and mount path of the DownwardAPI volume. |
| 40 | func DownwardAPIVolumeMount() corev1.VolumeMount { |
no outgoing calls