Documentation
¶
Index ¶
- func CreateTestingNamespace(baseName string, apiserver *httptest.Server, t *testing.T) *v1.Namespace
- func DefaultOpenAPIConfig() *openapicommon.Config
- func DeleteTestingNamespace(ns *v1.Namespace, apiserver *httptest.Server, t *testing.T)
- func EtcdMain(tests func() int)
- func GetEtcdURL() string
- func NewIntegrationTestMasterConfig() *master.Config
- func NewIntegrationTestNodePreparer(client clientset.Interface, countToStrategy []testutils.CountToStrategy, ...) testutils.TestNodePreparer
- func NewMasterConfig() *master.Config
- func NewSingleContentTypeSerializer(scheme *runtime.Scheme, info runtime.SerializerInfo) runtime.StorageSerializer
- func SharedEtcd() *storagebackend.Config
- func StartTestServer(t *testing.T, stopCh <-chan struct{}, setup TestServerSetup) (client.Interface, *rest.Config)
- type CloseFunc
- type Config
- type IntegrationTestNodePreparer
- type MasterHolder
- type MasterReceiver
- type TestServerSetup
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateTestingNamespace ¶
func CreateTestingNamespace(baseName string, apiserver *httptest.Server, t *testing.T) *v1.Namespace
CreateTestingNamespace creates a namespace for testing.
func DefaultOpenAPIConfig ¶ added in v1.14.0
func DefaultOpenAPIConfig() *openapicommon.Config
DefaultOpenAPIConfig returns an openapicommon.Config initialized to default values.
func DeleteTestingNamespace ¶
func DeleteTestingNamespace(ns *v1.Namespace, apiserver *httptest.Server, t *testing.T)
DeleteTestingNamespace is currently a no-op function.
func EtcdMain ¶ added in v1.8.0
func EtcdMain(tests func() int)
EtcdMain starts an etcd instance before running tests.
func GetEtcdURL ¶ added in v1.8.0
func GetEtcdURL() string
GetEtcdURL returns the URL of the etcd instance started by EtcdMain.
func NewIntegrationTestMasterConfig ¶
func NewIntegrationTestMasterConfig() *master.Config
NewIntegrationTestMasterConfig returns the master config appropriate for most integration tests.
func NewIntegrationTestNodePreparer ¶ added in v1.5.0
func NewIntegrationTestNodePreparer(client clientset.Interface, countToStrategy []testutils.CountToStrategy, nodeNamePrefix string) testutils.TestNodePreparer
NewIntegrationTestNodePreparer creates an IntegrationTestNodePreparer configured with defaults.
func NewMasterConfig ¶
func NewMasterConfig() *master.Config
NewMasterConfig returns a basic master config.
func NewSingleContentTypeSerializer ¶
func NewSingleContentTypeSerializer(scheme *runtime.Scheme, info runtime.SerializerInfo) runtime.StorageSerializer
NewSingleContentTypeSerializer wraps a serializer in a NegotiatedSerializer that handles one content type
func SharedEtcd ¶ added in v1.9.0
func SharedEtcd() *storagebackend.Config
SharedEtcd creates a storage config for a shared etcd instance, with a unique prefix.
func StartTestServer ¶ added in v1.11.8
func StartTestServer(t *testing.T, stopCh <-chan struct{}, setup TestServerSetup) (client.Interface, *rest.Config)
StartTestServer runs a kube-apiserver, optionally calling out to the setup.ModifyServerRunOptions and setup.ModifyServerConfig functions
Types ¶
type CloseFunc ¶ added in v1.7.0
type CloseFunc func()
CloseFunc can be called to cleanup the master
func RunAMaster ¶
func RunAMaster(masterConfig *master.Config) (*master.Master, *httptest.Server, CloseFunc)
RunAMaster starts a master with the provided config.
func RunAMasterUsingServer ¶ added in v1.5.0
func RunAMasterUsingServer(masterConfig *master.Config, s *httptest.Server, masterReceiver MasterReceiver) (*master.Master, *httptest.Server, CloseFunc)
RunAMasterUsingServer starts up a master using the provided config on the specified server.
type Config ¶
type Config struct {
// If nil, a default is used, partially filled configs will not get populated.
MasterConfig *master.Config
StartReplicationManager bool
// Client throttling qps
QPS float32
// Client burst qps, also burst replicas allowed in rc manager
Burst int
}
Config is a struct of configuration directives for NewMasterComponents.
type IntegrationTestNodePreparer ¶ added in v1.5.0
type IntegrationTestNodePreparer struct {
// contains filtered or unexported fields
}
IntegrationTestNodePreparer holds configuration information for the test node preparer.
func (*IntegrationTestNodePreparer) CleanupNodes ¶ added in v1.5.0
func (p *IntegrationTestNodePreparer) CleanupNodes() error
CleanupNodes deletes existing test nodes.
func (*IntegrationTestNodePreparer) PrepareNodes ¶ added in v1.5.0
func (p *IntegrationTestNodePreparer) PrepareNodes() error
PrepareNodes prepares countToStrategy test nodes.
type MasterHolder ¶ added in v1.5.0
type MasterHolder struct {
Initialized chan struct{}
M *master.Master
}
MasterHolder implements
type MasterReceiver ¶ added in v1.5.0
type MasterReceiver interface {
SetMaster(m *master.Master)
}
MasterReceiver can be used to provide the master to a custom incoming server function
type TestServerSetup ¶ added in v1.11.8
type TestServerSetup struct {
ModifyServerRunOptions func(*options.ServerRunOptions)
ModifyServerConfig func(*master.Config)
}
TestServerSetup holds configuration information for a kube-apiserver test server.