-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathheadless_service.go
73 lines (62 loc) · 2.36 KB
/
headless_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
71
72
73
/*
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/labels"
"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"
)
// NewHeadlessSVCSyncer returns headless service syncer.
func NewHeadlessSVCSyncer(cli client.Client, c *mysqlcluster.MysqlCluster) syncer.Interface {
service := &corev1.Service{
TypeMeta: metav1.TypeMeta{
APIVersion: "v1",
Kind: "Service",
},
ObjectMeta: metav1.ObjectMeta{
Name: c.GetNameForResource(utils.HeadlessSVC),
Namespace: c.Namespace,
Labels: map[string]string{
"app.kubernetes.io/name": "mysql",
"app.kubernetes.io/managed-by": "mysql.radondb.com",
},
},
}
return syncer.NewObjectSyncer("HeadlessSVC", c.Unwrap(), service, cli, func() error {
service.Spec.Type = "ClusterIP"
service.Spec.ClusterIP = "None"
service.Spec.Selector = labels.Set{
"app.kubernetes.io/name": "mysql",
"app.kubernetes.io/managed-by": "mysql.radondb.com",
"app.kubernetes.io/instance": c.Name,
}
// Use `publishNotReadyAddresses` to be able to access pods even if the pod is not ready.
service.Spec.PublishNotReadyAddresses = true
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)
//xtrabckup
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
})
}