seaweedfs-operator/controllers/controller_master_service.go

47 lines
1.1 KiB
Go
Raw Normal View History

2020-08-02 06:27:46 +00:00
package controllers
import (
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
seaweedv1 "github.com/seaweedfs/seaweedfs-operator/api/v1"
)
func (r *SeaweedReconciler) createMasterService(m *seaweedv1.Seaweed) *corev1.Service {
2020-08-02 06:27:46 +00:00
labels := labelsForMaster(m.Name)
dep := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{
Name: m.Name + "-master",
2020-08-02 06:27:46 +00:00
Namespace: m.Namespace,
Labels: labels,
Annotations: map[string]string{
"service.alpha.kubernetes.io/tolerate-unready-endpoints": "true",
},
2020-08-02 06:27:46 +00:00
},
Spec: corev1.ServiceSpec{
ClusterIP: "None",
PublishNotReadyAddresses: true,
2020-08-02 06:27:46 +00:00
Ports: []corev1.ServicePort{
{
2020-10-18 07:06:40 +00:00
Name: "swfs-master",
Protocol: corev1.Protocol("TCP"),
Port: 9333,
2020-10-18 03:52:13 +00:00
TargetPort: intstr.FromInt(9333),
2020-08-02 06:27:46 +00:00
},
{
2020-10-18 07:06:40 +00:00
Name: "swfs-master-grpc",
Protocol: corev1.Protocol("TCP"),
Port: 19333,
2020-10-18 03:52:13 +00:00
TargetPort: intstr.FromInt(19333),
2020-08-02 06:27:46 +00:00
},
},
Selector: labels,
},
}
// Set master instance as the owner and controller
// ctrl.SetControllerReference(m, dep, r.Scheme)
return dep
}