postgres-operator/pkg/util/constants/postgresql.go

17 lines
352 B
Go

package constants
import "time"
// PostgreSQL specific constants
const (
DataVolumeName = "pgdata"
PostgresDataMount = "/home/postgres/pgdata"
PostgresDataPath = PostgresDataMount + "/pgroot"
PostgresConnectRetryTimeout = 2 * time.Minute
PostgresConnectTimeout = 15 * time.Second
ShmVolumeName = "dshm"
ShmVolumePath = "/dev/shm"
)