seaweedfs-operator/controllers/controller_volume_service.go

45 lines
1.1 KiB
Go
Raw Normal View History

2020-08-05 05:13:36 +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) createVolumeServerService(m *seaweedv1.Seaweed) *corev1.Service {
labels := labelsForVolumeServer(m.Name)
dep := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{
Name: m.Name + "-volume",
Namespace: m.Namespace,
Labels: labels,
Annotations: map[string]string{
"service.alpha.kubernetes.io/tolerate-unready-endpoints": "true",
},
},
Spec: corev1.ServiceSpec{
ClusterIP: "None",
PublishNotReadyAddresses: true,
Ports: []corev1.ServicePort{
{
2020-10-18 07:06:40 +00:00
Name: "swfs-volume",
Protocol: corev1.Protocol("TCP"),
Port: 8444,
2020-10-18 03:52:13 +00:00
TargetPort: intstr.FromInt(8444),
2020-08-05 05:13:36 +00:00
},
{
2020-10-18 07:06:40 +00:00
Name: "swfs-volume-grpc",
Protocol: corev1.Protocol("TCP"),
Port: 18444,
2020-10-18 03:52:13 +00:00
TargetPort: intstr.FromInt(18444),
2020-08-05 05:13:36 +00:00
},
},
Selector: labels,
},
}
return dep
}