forked from percona/percona-postgresql-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.go
128 lines (116 loc) · 3.31 KB
/
k8s.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package extensions
import (
"fmt"
"strconv"
corev1 "k8s.io/api/core/v1"
pgv2 "github.com/percona/percona-postgresql-operator/pkg/apis/pgv2.percona.com/v2"
)
func GetExtensionKey(pgMajor int, name, version string) string {
return fmt.Sprintf("%s-pg%d-%s", name, pgMajor, version)
}
// ExtensionRelocatorContainer returns a container that will relocate extensions from the base image (i.e. pg_stat_monitor, pg_audit)
// to the data directory so we don't lose them when user adds a custom extension.
func ExtensionRelocatorContainer(cr *pgv2.PerconaPGCluster, image string, imagePullPolicy corev1.PullPolicy, postgresVersion int) corev1.Container {
containerName := "extension-relocator"
if cr.CompareVersion("2.4.0") >= 0 {
containerName = fmt.Sprintf("extension-relocator-%d", postgresVersion)
}
return corev1.Container{
Name: containerName,
Image: image,
ImagePullPolicy: imagePullPolicy,
Command: []string{"/usr/local/bin/relocate-extensions.sh"},
Env: []corev1.EnvVar{
{
Name: "PG_VERSION",
Value: strconv.Itoa(postgresVersion),
},
},
VolumeMounts: []corev1.VolumeMount{
{
Name: "postgres-data",
MountPath: "/pgdata",
},
},
}
}
func ExtensionInstallerContainer(cr *pgv2.PerconaPGCluster, postgresVersion int, spec *pgv2.ExtensionsSpec, extensions string, openshift *bool) corev1.Container {
mounts := []corev1.VolumeMount{
{
Name: "postgres-data",
MountPath: "/pgdata",
},
}
mounts = append(mounts, ExtensionVolumeMounts(postgresVersion)...)
containerName := "extension-installer"
if cr.CompareVersion("2.4.0") >= 0 {
containerName = fmt.Sprintf("extension-installer-%d", postgresVersion)
}
container := corev1.Container{
Name: containerName,
Image: spec.Image,
ImagePullPolicy: spec.ImagePullPolicy,
Command: []string{"/usr/local/bin/install-extensions.sh"},
Env: []corev1.EnvVar{
{
Name: "STORAGE_TYPE",
Value: spec.Storage.Type,
},
{
Name: "STORAGE_ENDPOINT",
Value: spec.Storage.Endpoint,
},
{
Name: "STORAGE_REGION",
Value: spec.Storage.Region,
},
{
Name: "STORAGE_BUCKET",
Value: spec.Storage.Bucket,
},
{
Name: "INSTALL_EXTENSIONS",
Value: extensions,
},
{
Name: "PG_VERSION",
Value: strconv.Itoa(postgresVersion),
},
{
Name: "PGDATA_EXTENSIONS",
Value: "/pgdata/extension/" + strconv.Itoa(postgresVersion),
},
},
EnvFrom: []corev1.EnvFromSource{
{
SecretRef: &corev1.SecretEnvSource{
LocalObjectReference: spec.Storage.Secret.LocalObjectReference,
},
},
},
VolumeMounts: mounts,
}
if openshift == nil || !*openshift {
container.SecurityContext = &corev1.SecurityContext{
RunAsUser: func() *int64 {
uid := int64(26)
return &uid
}(),
}
}
return container
}
func ExtensionVolumeMounts(postgresVersion int) []corev1.VolumeMount {
return []corev1.VolumeMount{
{
Name: "postgres-data",
MountPath: fmt.Sprintf("/usr/pgsql-%d/share/extension", postgresVersion),
SubPath: fmt.Sprintf("extension/%d/usr/pgsql-%[1]d/share/extension", postgresVersion),
},
{
Name: "postgres-data",
MountPath: fmt.Sprintf("/usr/pgsql-%d/lib", postgresVersion),
SubPath: fmt.Sprintf("extension/%d/usr/pgsql-%[1]d/lib", postgresVersion),
},
}
}