-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathfollower_service.go
70 lines (60 loc) · 2.25 KB
/
follower_service.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
/*
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 syncer
import (
"github.com/presslabs/controller-util/pkg/syncer"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/radondb/radondb-mysql-kubernetes/mysqlcluster"
"github.com/radondb/radondb-mysql-kubernetes/utils"
)
// NewFollowerSVCSyncer returns follower service syncer.
func NewFollowerSVCSyncer(cli client.Client, c *mysqlcluster.MysqlCluster) syncer.Interface {
labels := c.GetLabels()
labels["mysql.radondb.com/service-type"] = string(utils.FollowerService)
service := &corev1.Service{
TypeMeta: metav1.TypeMeta{
APIVersion: "v1",
Kind: "Service",
},
ObjectMeta: metav1.ObjectMeta{
Name: c.GetNameForResource(utils.FollowerService),
Namespace: c.Namespace,
Labels: labels,
},
}
return syncer.NewObjectSyncer("FollowerSVC", c.Unwrap(), service, cli, func() error {
// Allows to modify the service access method, the default is ClusterIP.
if service.Spec.Type == "" {
service.Spec.Type = "ClusterIP"
}
service.Spec.Selector = c.GetSelectorLabels()
if !c.Spec.LeaderAsFollower {
service.Spec.Selector["role"] = string(utils.Follower)
}
service.Spec.Selector["healthy"] = "yes"
if len(service.Spec.Ports) != 2 {
service.Spec.Ports = make([]corev1.ServicePort, 2)
}
service.Spec.Ports[0].Name = utils.MysqlPortName
service.Spec.Ports[0].Port = utils.MysqlPort
service.Spec.Ports[0].TargetPort = intstr.FromInt(utils.MysqlPort)
// xtrabackup
service.Spec.Ports[1].Name = utils.XBackupPortName
service.Spec.Ports[1].Port = utils.XBackupPort
service.Spec.Ports[1].TargetPort = intstr.FromInt(utils.XBackupPort)
return nil
})
}