Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { Create(context.Context, *v1alpha1.StorageVersion, metav1.CreateOptions) (*v1alpha1.StorageVersion, error) UpdateStatus(context.Context, *v1alpha1.StorageVersion, metav1.UpdateOptions) (*v1alpha1.StorageVersion, error) Get(context.Context, string, metav1.GetOptions) (*v1alpha1.StorageVersion, error) }
Client has the methods required to update the storage version.
type Manager ¶
type Manager interface { // AddResourceInfo records resources whose StorageVersions need updates AddResourceInfo(resources ...*ResourceInfo) // UpdateStorageVersions tries to update the StorageVersions of the recorded resources UpdateStorageVersions(kubeAPIServerClientConfig *rest.Config, apiserverID string) // PendingUpdate returns true if the StorageVersion of the given resource is still pending update. PendingUpdate(gr schema.GroupResource) bool // LastUpdateError returns the last error hit when updating the storage version of the given resource. LastUpdateError(gr schema.GroupResource) error // Completed returns true if updating StorageVersions of all recorded resources has completed. Completed() bool }
Manager records the resources whose StorageVersions need updates, and provides a method to update those StorageVersions.
type ResourceInfo ¶
type ResourceInfo struct { GroupResource schema.GroupResource EncodingVersion string // Used to calculate decodable versions. Can only be used after all // equivalent versions are registered by InstallREST. EquivalentResourceMapper runtime.EquivalentResourceRegistry }
ResourceInfo contains the information to register the resource to the storage version API.
Click to show internal directories.
Click to hide internal directories.