 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
      View Source
      
  
    var StatusStrategy = statefulSetStatusStrategy{Strategy}
    
      View Source
      
  var Strategy = statefulSetStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    Strategy is the default logic that applies when creating and updating Replication StatefulSet objects.
Functions ¶
This section is empty.
Types ¶
type Registry ¶ added in v1.8.0
type Registry interface {
	ListStatefulSets(ctx context.Context, options *metainternalversion.ListOptions) (*apps.StatefulSetList, error)
	WatchStatefulSets(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error)
	GetStatefulSet(ctx context.Context, statefulSetID string, options *metav1.GetOptions) (*apps.StatefulSet, error)
	CreateStatefulSet(ctx context.Context, statefulSet *apps.StatefulSet, createValidation rest.ValidateObjectFunc) (*apps.StatefulSet, error)
	UpdateStatefulSet(ctx context.Context, statefulSet *apps.StatefulSet, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc) (*apps.StatefulSet, error)
	DeleteStatefulSet(ctx context.Context, statefulSetID string) error
}
    Registry is an interface for things that know how to store StatefulSets.
func NewRegistry ¶ added in v1.8.0
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
 Click to show internal directories. 
   Click to hide internal directories.