-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathcontainer.go
101 lines (91 loc) · 2.85 KB
/
container.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
/*
Copyright 2021 RadonDB.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package container
import (
corev1 "k8s.io/api/core/v1"
"github.com/radondb/radondb-mysql-kubernetes/mysqlcluster"
"github.com/radondb/radondb-mysql-kubernetes/utils"
)
// container interface.
type container interface {
getName() string
getImage() string
getCommand() []string
getEnvVars() []corev1.EnvVar
getLifecycle() *corev1.Lifecycle
getResources() corev1.ResourceRequirements
getPorts() []corev1.ContainerPort
getLivenessProbe() *corev1.Probe
getReadinessProbe() *corev1.Probe
getVolumeMounts() []corev1.VolumeMount
}
func getStartupProbe(name string) *corev1.Probe {
if name == utils.ContainerMysqlName {
return &corev1.Probe{
ProbeHandler: corev1.ProbeHandler{
Exec: &corev1.ExecAction{
Command: []string{
"sh",
"-c",
`if test $(mysql -uroot -h127.0.0.1 -NB -e "SELECT 1") -eq 1; then sed -i "/^RESET SLAVE ALL;/d" /etc/mysql/conf.d/init.sql; fi`,
},
},
},
InitialDelaySeconds: 10,
TimeoutSeconds: 15,
PeriodSeconds: 15,
SuccessThreshold: 1,
FailureThreshold: 5,
}
} else {
return nil
}
}
// EnsureContainer ensure a container by the giving name.
func EnsureContainer(name string, c *mysqlcluster.MysqlCluster) corev1.Container {
var ctr container
switch name {
case utils.ContainerInitSidecarName:
ctr = &initSidecar{c, name}
case utils.ContainerInitMysqlName:
ctr = &initMysql{c, name}
case utils.ContainerMysqlName:
ctr = &mysql{c, name}
case utils.ContainerXenonName:
ctr = &xenon{c, name}
case utils.ContainerMetricsName:
ctr = &metrics{c, name}
case utils.ContainerSlowLogName:
ctr = &slowLog{c, name}
case utils.ContainerAuditLogName:
ctr = &auditLog{c, name}
case utils.ContainerErrorLogName:
ctr = &errorLog{c, name}
case utils.ContainerBackupName:
ctr = &backupSidecar{c, name}
}
return corev1.Container{
Name: ctr.getName(),
Image: mysqlcluster.GetImage(ctr.getImage()),
ImagePullPolicy: c.Spec.PodPolicy.ImagePullPolicy,
Command: ctr.getCommand(),
Env: ctr.getEnvVars(),
Lifecycle: ctr.getLifecycle(),
Resources: ctr.getResources(),
Ports: ctr.getPorts(),
LivenessProbe: ctr.getLivenessProbe(),
ReadinessProbe: ctr.getReadinessProbe(),
StartupProbe: getStartupProbe(name),
VolumeMounts: ctr.getVolumeMounts(),
}
}