Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RunEtcd (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    		etcdConfig.ListenClientUrls[i].Scheme = "https"
    	}
    	for i := range etcdConfig.AdvertiseClientUrls {
    		etcdConfig.AdvertiseClientUrls[i].Scheme = "https"
    	}
    
    	client := testserver.RunEtcd(t, etcdConfig)
    	cfg := storagebackend.Config{
    		Type: storagebackend.StorageTypeETCD3,
    		Transport: storagebackend.TransportConfig{
    			ServerList:     client.Endpoints(),
    			CertFile:       certFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    type setupOption func(*setupOptions)
    
    func withClientConfig(config *embed.Config) setupOption {
    	return func(options *setupOptions) {
    		options.client = func(t testing.TB) *clientv3.Client {
    			return testserver.RunEtcd(t, config)
    		}
    	}
    }
    
    func withPrefix(prefix string) setupOption {
    	return func(options *setupOptions) {
    		options.prefix = prefix
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top