mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package incluster
|
|
|
|
import (
|
|
"github.com/gitpod-io/gitpod/installer/pkg/common"
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
)
|
|
|
|
// service this doesn't use the common.GenerateService function
|
|
// because it's more complex than this caters for
|
|
func service(ctx *common.RenderContext) ([]runtime.Object, error) {
|
|
labels := common.CustomizeLabel(ctx, Component, common.TypeMetaService)
|
|
|
|
return []runtime.Object{&corev1.Service{
|
|
TypeMeta: common.TypeMetaService,
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: Component,
|
|
Namespace: ctx.Namespace,
|
|
Labels: labels,
|
|
Annotations: common.CustomizeAnnotation(ctx, Component, common.TypeMetaService),
|
|
},
|
|
Spec: corev1.ServiceSpec{
|
|
Ports: []corev1.ServicePort{{
|
|
Protocol: *common.TCPProtocol,
|
|
Port: Port,
|
|
TargetPort: intstr.IntOrString{IntVal: Port},
|
|
}},
|
|
// todo(sje): selector is different if using CloudSQLProxy
|
|
Selector: map[string]string{
|
|
"app.kubernetes.io/name": "mysql",
|
|
},
|
|
Type: corev1.ServiceTypeClusterIP,
|
|
},
|
|
}}, nil
|
|
}
|