Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for etcd3 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"context"
    	"crypto/rand"
    	"fmt"
    	"io/ioutil"
    	"os"
    	"reflect"
    	"strings"
    	"sync/atomic"
    	"testing"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.etcd.io/etcd/server/v3/embed"
    	"google.golang.org/grpc/grpclog"
    
    	"k8s.io/apimachinery/pkg/api/apitesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	"k8s.io/apiserver/pkg/apis/example"
    	examplev1 "k8s.io/apiserver/pkg/apis/example/v1"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/clock"
    )
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. cmd/iam-etcd-store.go

    	jsoniter "github.com/json-iterator/go"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/kms"
    	"github.com/puzpuzpuz/xsync/v3"
    	"go.etcd.io/etcd/api/v3/mvccpb"
    	etcd "go.etcd.io/etcd/client/v3"
    )
    
    var defaultContextTimeout = 30 * time.Second
    
    func etcdKvsToSet(prefix string, kvs []*mvccpb.KeyValue) set.StringSet {
    	users := set.NewStringSet()
    	for _, kv := range kvs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. hack/unwanted-dependencies.json

            "go.etcd.io/etcd/client/v3",
            "go.etcd.io/etcd/server/v3",
            "k8s.io/apiserver"
          ],
          "github.com/grpc-ecosystem/grpc-gateway": [
            "go.etcd.io/etcd/api/v3",
            "go.etcd.io/etcd/server/v3"
          ],
          "github.com/json-iterator/go": [
            "github.com/prometheus/client_golang",
            "go.etcd.io/etcd/client/v2",
            "go.etcd.io/etcd/server/v3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. go.mod

    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    	github.com/xlab/treeprint v1.2.0 // indirect
    	go.etcd.io/bbolt v1.3.9 // indirect
    	go.etcd.io/etcd/client/v2 v2.305.13 // indirect
    	go.etcd.io/etcd/pkg/v3 v3.5.13 // indirect
    	go.etcd.io/etcd/raft/v3 v3.5.13 // indirect
    	go.etcd.io/etcd/server/v3 v3.5.13 // indirect
    	go.opencensus.io v0.24.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/certs.go

    		data, ok := c.(InitData)
    		if !ok {
    			return errors.New("certs phase invoked with an invalid data struct")
    		}
    
    		// if using external etcd, skips etcd certificate authority generation
    		if data.Cfg().Etcd.External != nil && ca.Name == "etcd-ca" {
    			fmt.Printf("[certs] External etcd mode: Skipping %s certificate authority generation\n", ca.BaseName)
    			return nil
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. go.mod

    	github.com/tidwall/gjson v1.17.1
    	github.com/tinylib/msgp v1.1.9
    	github.com/valyala/bytebufferpool v1.0.0
    	github.com/xdg/scram v1.0.5
    	github.com/zeebo/xxh3 v1.0.2
    	go.etcd.io/etcd/api/v3 v3.5.14
    	go.etcd.io/etcd/client/v3 v3.5.14
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	goftp.io/server/v2 v2.0.1
    	golang.org/x/crypto v0.24.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. Makefile

    	@(env bash $(PWD)/buildscripts/race.sh)
    
    test-iam: install-race ## verify IAM (external IDP, etcd backends)
    	@echo "Running tests for IAM (external IDP, etcd backends)"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue,dev -v -run TestIAM* ./cmd
    	@echo "Running tests for IAM (external IDP, etcd backends) with -race"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top