mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
98 lines
2.7 KiB
Go
98 lines
2.7 KiB
Go
|
/*
|
||
|
Copyright 2016 The Kubernetes 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.
|
||
|
*/
|
||
|
|
||
|
package factory
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"sync/atomic"
|
||
|
"time"
|
||
|
|
||
|
"github.com/ibuildthecloud/kvsql/clientv3"
|
||
|
"github.com/ibuildthecloud/kvsql/storage"
|
||
|
"k8s.io/apimachinery/pkg/util/wait"
|
||
|
"k8s.io/apiserver/pkg/storage"
|
||
|
"k8s.io/apiserver/pkg/storage/storagebackend"
|
||
|
"k8s.io/apiserver/pkg/storage/value"
|
||
|
)
|
||
|
|
||
|
func NewKVSQLHealthCheck(c storagebackend.Config) (func() error, error) {
|
||
|
// constructing the etcd v3 client blocks and times out if etcd is not available.
|
||
|
// retry in a loop in the background until we successfully create the client, storing the client or error encountered
|
||
|
|
||
|
clientValue := &atomic.Value{}
|
||
|
|
||
|
clientErrMsg := &atomic.Value{}
|
||
|
clientErrMsg.Store("etcd client connection not yet established")
|
||
|
|
||
|
go wait.PollUntil(time.Second, func() (bool, error) {
|
||
|
client, err := newETCD3Client(c)
|
||
|
if err != nil {
|
||
|
clientErrMsg.Store(err.Error())
|
||
|
return false, nil
|
||
|
}
|
||
|
clientValue.Store(client)
|
||
|
clientErrMsg.Store("")
|
||
|
return true, nil
|
||
|
}, wait.NeverStop)
|
||
|
|
||
|
return func() error {
|
||
|
if errMsg := clientErrMsg.Load().(string); len(errMsg) > 0 {
|
||
|
return fmt.Errorf(errMsg)
|
||
|
}
|
||
|
client := clientValue.Load().(*clientv3.Client)
|
||
|
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||
|
defer cancel()
|
||
|
if _, err := client.Cluster.MemberList(ctx); err != nil {
|
||
|
return fmt.Errorf("error listing etcd members: %v", err)
|
||
|
}
|
||
|
return nil
|
||
|
}, nil
|
||
|
}
|
||
|
|
||
|
func newETCD3Client(c storagebackend.Config) (*clientv3.Client, error) {
|
||
|
cfg := clientv3.Config{
|
||
|
Endpoints: c.ServerList,
|
||
|
}
|
||
|
|
||
|
if len(cfg.Endpoints) == 0 {
|
||
|
cfg.Endpoints = []string{"sqlite://"}
|
||
|
}
|
||
|
|
||
|
client, err := clientv3.New(cfg)
|
||
|
return client, err
|
||
|
}
|
||
|
|
||
|
func NewKVSQLStorage(c storagebackend.Config) (storage.Interface, func(), error) {
|
||
|
client, err := newETCD3Client(c)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
etcd3.StartCompactor(ctx, client, c.CompactionInterval)
|
||
|
destroyFunc := func() {
|
||
|
cancel()
|
||
|
client.Close()
|
||
|
}
|
||
|
transformer := c.Transformer
|
||
|
if transformer == nil {
|
||
|
transformer = value.IdentityTransformer
|
||
|
}
|
||
|
|
||
|
return etcd3.New(client, c.Codec, c.Prefix, transformer, c.Paging), destroyFunc, nil
|
||
|
}
|