1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/pkg/storage/service.go

62 lines
1.9 KiB
Go
Raw Normal View History

2018-03-06 09:54:12 +00:00
//
// DISCLAIMER
//
2022-01-10 11:35:49 +00:00
// Copyright 2016-2022 ArangoDB GmbH, Cologne, Germany
2018-03-06 09:54:12 +00:00
//
// 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.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package storage
import (
2021-03-23 15:47:28 +00:00
"context"
2021-01-08 14:35:38 +00:00
"github.com/arangodb/kube-arangodb/pkg/util/errors"
2022-06-30 18:39:07 +00:00
core "k8s.io/api/core/v1"
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
2018-03-06 09:54:12 +00:00
2018-03-13 15:25:33 +00:00
api "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
"github.com/arangodb/kube-arangodb/pkg/storage/provisioner"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2018-03-06 09:54:12 +00:00
)
// ensureProvisionerService ensures that a service is created for accessing the
// provisioners.
func (ls *LocalStorage) ensureProvisionerService(apiObject *api.ArangoLocalStorage) error {
labels := k8sutil.LabelsForLocalStorage(apiObject.GetName(), roleProvisioner)
2022-06-30 18:39:07 +00:00
svc := &core.Service{
ObjectMeta: meta.ObjectMeta{
2018-03-06 09:54:12 +00:00
Name: apiObject.GetName(),
Labels: labels,
},
2022-06-30 18:39:07 +00:00
Spec: core.ServiceSpec{
Ports: []core.ServicePort{
core.ServicePort{
2018-03-06 09:54:12 +00:00
Name: "provisioner",
2022-06-30 18:39:07 +00:00
Protocol: core.ProtocolTCP,
2018-03-06 09:54:12 +00:00
Port: provisioner.DefaultPort,
},
},
Selector: labels,
},
}
svc.SetOwnerReferences(append(svc.GetOwnerReferences(), apiObject.AsOwner()))
ns := ls.config.Namespace
2022-06-30 18:39:07 +00:00
if _, err := ls.deps.Client.Kubernetes().CoreV1().Services(ns).Create(context.Background(), svc, meta.CreateOptions{}); err != nil && !k8sutil.IsAlreadyExists(err) {
2021-01-08 14:35:38 +00:00
return errors.WithStack(err)
2018-03-06 09:54:12 +00:00
}
return nil
}