Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewDefaultTestServerOptions (0.52 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    type Logger interface {
    	Errorf(format string, args ...interface{})
    	Fatalf(format string, args ...interface{})
    	Logf(format string, args ...interface{})
    }
    
    // NewDefaultTestServerOptions Default options for TestServer instances
    func NewDefaultTestServerOptions() *TestServerInstanceOptions {
    	return &TestServerInstanceOptions{}
    }
    
    // StartTestServer starts a apiextensions-apiserver. A rest client config and a tear-down func,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  2. cmd/kube-apiserver/app/testing/testserver.go

    // 1. aggregated apiservers
    // 2. peer kube-apiservers
    type ProxyCA struct {
    	ProxySigningCert *x509.Certificate
    	ProxySigningKey  *rsa.PrivateKey
    }
    
    // NewDefaultTestServerOptions Default options for TestServer instances
    func NewDefaultTestServerOptions() *TestServerInstanceOptions {
    	return &TestServerInstanceOptions{
    		EnableCertAuth: true,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top