1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00
kube-arangodb/pkg/storage/clients.go

119 lines
3.1 KiB
Go
Raw Normal View History

2018-03-06 14:37:25 +00:00
//
// DISCLAIMER
//
2022-01-10 11:35:49 +00:00
// Copyright 2016-2022 ArangoDB GmbH, Cologne, Germany
2018-03-06 14:37:25 +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 (
"context"
"fmt"
"time"
2018-03-06 14:37:25 +00:00
2018-03-13 15:25:33 +00:00
"github.com/arangodb/kube-arangodb/pkg/storage/provisioner"
"github.com/arangodb/kube-arangodb/pkg/storage/provisioner/client"
"github.com/arangodb/kube-arangodb/pkg/util/errors"
2018-03-13 15:25:33 +00:00
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2018-03-06 14:37:25 +00:00
)
type Clients map[string]provisioner.API
func (c Clients) Copy() Clients {
r := make(Clients, len(c))
for k, v := range c {
r[k] = v
}
return r
}
func (c Clients) Filter(f func(node string, client provisioner.API) bool) Clients {
r := make(Clients, len(c))
for k, v := range c {
if f(k, v) {
r[k] = v
}
}
return r
}
func (c Clients) Keys() []string {
r := make([]string, 0, len(c))
for k := range c {
r = append(r, k)
}
return r
}
2018-03-06 14:37:25 +00:00
// createProvisionerClients creates a list of clients for all known
// provisioners.
func (ls *LocalStorage) createProvisionerClients(ctx context.Context) (Clients, error) {
2018-03-06 14:37:25 +00:00
// Find provisioner endpoints
ns := ls.apiObject.GetNamespace()
listOptions := k8sutil.LocalStorageListOpt(ls.apiObject.GetName(), roleProvisioner)
items, err := ls.deps.Client.Kubernetes().CoreV1().Endpoints(ns).List(context.Background(), listOptions)
2018-03-06 14:37:25 +00:00
if err != nil {
2021-01-08 14:35:38 +00:00
return nil, errors.WithStack(err)
2018-03-06 14:37:25 +00:00
}
addrs := createValidEndpointList(items)
if len(addrs) == 0 {
// No provisioners available
return nil, nil
}
// Create clients for endpoints
clients := make(map[string]provisioner.API, len(addrs))
for _, addr := range addrs {
c, err := client.New(fmt.Sprintf("http://%s", addr))
2018-03-06 14:37:25 +00:00
if err != nil {
2021-01-08 14:35:38 +00:00
return nil, errors.WithStack(err)
2018-03-06 14:37:25 +00:00
}
if info, err := ls.fetchClientNodeInfo(ctx, c); err == nil {
clients[info.NodeName] = c
}
2018-03-06 14:37:25 +00:00
}
return clients, nil
}
func (ls *LocalStorage) fetchClientNodeInfo(ctx context.Context, c provisioner.API) (provisioner.NodeInfo, error) {
nctx, cancel := context.WithTimeout(ctx, 3*time.Second)
defer cancel()
return c.GetNodeInfo(nctx)
}
2018-03-06 14:37:25 +00:00
// GetClientByNodeName looks for a client that serves the given node name.
// Returns an error if no such client is found.
func (ls *LocalStorage) GetClientByNodeName(ctx context.Context, nodeName string) (provisioner.API, error) {
clients, err := ls.createProvisionerClients(ctx)
2018-03-06 14:37:25 +00:00
if err != nil {
2021-01-08 14:35:38 +00:00
return nil, errors.WithStack(err)
2018-03-06 14:37:25 +00:00
}
// Find matching client
if c, ok := clients[nodeName]; ok {
return c, nil
2018-03-06 14:37:25 +00:00
}
2021-01-08 14:35:38 +00:00
return nil, errors.WithStack(errors.Newf("No client found for node name '%s'", nodeName))
2018-03-06 14:37:25 +00:00
}