TempVolumeMount returns the name and mount path of the ephemeral volume.
()
| 28 | |
| 29 | // TempVolumeMount returns the name and mount path of the ephemeral volume. |
| 30 | func TempVolumeMount() corev1.VolumeMount { |
| 31 | return corev1.VolumeMount{Name: "postgres-temp", MountPath: tmpMountPath} |
| 32 | } |
| 33 | |
| 34 | // WALVolumeMount returns the name and mount path of the PostgreSQL WAL volume. |
| 35 | func WALVolumeMount() corev1.VolumeMount { |