 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
const ( ProjRootFlag = "root" KubeConfigFlag = "kubeconfig" NamespacedManPathFlag = "namespacedMan" GlobalManPathFlag = "globalMan" SingleNamespaceFlag = "singleNamespace" TestNamespaceEnv = "TEST_NAMESPACE" )
Variables ¶
This section is empty.
Functions ¶
func AddToFrameworkScheme ¶
AddToFrameworkScheme allows users to add the scheme for their custom resources to the framework's scheme for use with the dynamic client. The user provides the addToScheme function (located in the register.go file of their operator project) and the List struct for their custom resource. For example, for a memcached operator, the list stuct may look like:
&MemcachedList{
	TypeMeta: metav1.TypeMeta{
		Kind: "Memcached",
		APIVersion: "cache.example.com/v1alpha1",
		},
	}
The List object is needed because the CRD has not always been fully registered by the time this function is called. If the CRD takes more than 5 seconds to become ready, this function throws an error
Types ¶
type CleanupOptions ¶ added in v0.0.7
type Framework ¶
type Framework struct {
	Client            *frameworkClient
	KubeConfig        *rest.Config
	KubeClient        kubernetes.Interface
	Scheme            *runtime.Scheme
	NamespacedManPath *string
	Namespace         string
}
    var ( // Global framework struct Global *Framework )
type FrameworkClient ¶ added in v0.0.7
type FrameworkClient interface {
	Get(gCtx goctx.Context, key dynclient.ObjectKey, obj runtime.Object) error
	List(gCtx goctx.Context, opts *dynclient.ListOptions, list runtime.Object) error
	Create(gCtx goctx.Context, obj runtime.Object, cleanupOptions *CleanupOptions) error
	Delete(gCtx goctx.Context, obj runtime.Object, opts ...dynclient.DeleteOptionFunc) error
	Update(gCtx goctx.Context, obj runtime.Object) error
}
    type TestCtx ¶
type TestCtx struct {
	// contains filtered or unexported fields
}
    func NewTestCtx ¶
func (*TestCtx) AddCleanupFn ¶ added in v0.0.7
func (ctx *TestCtx) AddCleanupFn(fn cleanupFn)
func (*TestCtx) CleanupNoT ¶
func (ctx *TestCtx) CleanupNoT()
CleanupNoT is a modified version of Cleanup; does not use t for logging, instead uses log intended for use by MainEntry, which does not have a testing.T
func (*TestCtx) GetNamespace ¶
func (*TestCtx) InitializeClusterResources ¶
func (ctx *TestCtx) InitializeClusterResources(cleanupOptions *CleanupOptions) error