2023-08-07 19:13:26 +00:00
|
|
|
// Copyright 2022 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2022-09-05 04:01:14 +00:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
|
|
)
|
|
|
|
|
2023-11-04 09:35:37 +00:00
|
|
|
func Service(namespace, name string, ports []uint16) (*v1.Service, error) {
|
2022-09-05 04:01:14 +00:00
|
|
|
var svcPorts []v1.ServicePort
|
2023-11-02 03:12:41 +00:00
|
|
|
for _, port := range ports {
|
2022-09-05 04:01:14 +00:00
|
|
|
svcPorts = append(svcPorts, v1.ServicePort{
|
2023-11-02 03:12:41 +00:00
|
|
|
Port: int32(port),
|
|
|
|
TargetPort: intstr.IntOrString{IntVal: int32(port)},
|
2022-09-05 04:01:14 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-03-21 19:00:45 +00:00
|
|
|
dnsName, err := dnsName(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-05 04:01:14 +00:00
|
|
|
return &v1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2023-03-21 19:00:45 +00:00
|
|
|
Name: dnsName,
|
2022-09-05 04:01:14 +00:00
|
|
|
Namespace: namespace,
|
|
|
|
},
|
|
|
|
Spec: v1.ServiceSpec{
|
|
|
|
Type: v1.ServiceTypeClusterIP,
|
|
|
|
Selector: map[string]string{
|
2023-11-04 09:35:37 +00:00
|
|
|
"step": dnsName,
|
2022-09-05 04:01:14 +00:00
|
|
|
},
|
|
|
|
Ports: svcPorts,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|