Documentation ¶
Index ¶
- func Add(mgr manager.Manager) error
- func ApplyRevision(set *appsv1alpha1.StatefulSet, revision *apps.ControllerRevision) (*appsv1alpha1.StatefulSet, error)
- func GetStatefulsetConditition(status appsv1alpha1.StatefulSetStatus, condType apps.StatefulSetConditionType) *apps.StatefulSetCondition
- func Match(ss *appsv1alpha1.StatefulSet, history *apps.ControllerRevision) (bool, error)
- func NewStatefulsetCondition(conditionType apps.StatefulSetConditionType, ...) apps.StatefulSetCondition
- func SetStatefulsetCondition(status *appsv1alpha1.StatefulSetStatus, condition apps.StatefulSetCondition)
- type ControlInterface
- type ReconcileStatefulSet
- type StatefulPodControlInterface
- type StatusUpdaterInterface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Add ¶
Add creates a new StatefulSet Controller and adds it to the Manager with default RBAC. The Manager will set fields on the Controller and Start it when the Manager is Started.
func ApplyRevision ¶
func ApplyRevision(set *appsv1alpha1.StatefulSet, revision *apps.ControllerRevision) (*appsv1alpha1.StatefulSet, error)
ApplyRevision returns a new StatefulSet constructed by restoring the state in revision to set. If the returned error is nil, the returned StatefulSet is valid.
func GetStatefulsetConditition ¶
func GetStatefulsetConditition(status appsv1alpha1.StatefulSetStatus, condType apps.StatefulSetConditionType) *apps.StatefulSetCondition
GetStatefulsetConditition returns the condition with the provided type.
func Match ¶
func Match(ss *appsv1alpha1.StatefulSet, history *apps.ControllerRevision) (bool, error)
Match check if the given StatefulSet's template matches the template stored in the given history.
func NewStatefulsetCondition ¶
func NewStatefulsetCondition(conditionType apps.StatefulSetConditionType, conditionStatus v1.ConditionStatus, reason, message string) apps.StatefulSetCondition
NewStatefulsetCondition creates a new statefulset condition.
func SetStatefulsetCondition ¶
func SetStatefulsetCondition(status *appsv1alpha1.StatefulSetStatus, condition apps.StatefulSetCondition)
SetStatefulsetCondition updates the statefulset to include the provided condition. If the condition that
Types ¶
type ControlInterface ¶
type ControlInterface interface { // UpdateStatefulSet implements the control logic for Pod creation, update, and deletion, and // persistent volume creation, update, and deletion. // If an implementation returns a non-nil error, the invocation will be retried using a rate-limited strategy. // Implementors should sink any errors that they do not wish to trigger a retry, and they may feel free to // exit exceptionally at any point provided they wish the update to be re-run at a later point in time. UpdateStatefulSet(set *appsv1alpha1.StatefulSet, pods []*v1.Pod) error // ListRevisions returns a array of the ControllerRevisions that represent the revisions of set. If the returned // error is nil, the returns slice of ControllerRevisions is valid. ListRevisions(set *appsv1alpha1.StatefulSet) ([]*apps.ControllerRevision, error) // AdoptOrphanRevisions adopts any orphaned ControllerRevisions that match set's Selector. If all adoptions are // successful the returned error is nil. AdoptOrphanRevisions(set *appsv1alpha1.StatefulSet, revisions []*apps.ControllerRevision) error }
ControlInterface implements the control logic for updating StatefulSets and their children Pods. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultStatefulSetControl ¶
func NewDefaultStatefulSetControl( podControl StatefulPodControlInterface, inplaceControl inplaceupdate.Interface, statusUpdater StatusUpdaterInterface, controllerHistory history.Interface, recorder record.EventRecorder) ControlInterface
NewDefaultStatefulSetControl returns a new instance of the default implementation ControlInterface that implements the documented semantics for StatefulSets. podControl is the PodControlInterface used to create, update, and delete Pods and to create PersistentVolumeClaims. statusUpdater is the StatusUpdaterInterface used to update the status of StatefulSets. You should use an instance returned from NewRealStatefulPodControl() for any scenario other than testing.
type ReconcileStatefulSet ¶
type ReconcileStatefulSet struct {
// contains filtered or unexported fields
}
ReconcileStatefulSet reconciles a StatefulSet object
func (*ReconcileStatefulSet) Reconcile ¶
func (ssc *ReconcileStatefulSet) Reconcile(request reconcile.Request) (res reconcile.Result, retErr error)
Reconcile reads that state of the cluster for a StatefulSet object and makes changes based on the state read and what is in the StatefulSet.Spec Automatically generate RBAC rules to allow the Controller to read and write Pods
type StatefulPodControlInterface ¶
type StatefulPodControlInterface interface { // CreateStatefulPod create a Pod in a StatefulSet. Any PVCs necessary for the Pod are created prior to creating // the Pod. If the returned error is nil the Pod and its PVCs have been created. CreateStatefulPod(set *appsv1alpha1.StatefulSet, pod *v1.Pod) error // UpdateStatefulPod Updates a Pod in a StatefulSet. If the Pod already has the correct identity and stable // storage this method is a no-op. If the Pod must be mutated to conform to the Set, it is mutated and updated. // pod is an in-out parameter, and any updates made to the pod are reflected as mutations to this parameter. If // the create is successful, the returned error is nil. UpdateStatefulPod(set *appsv1alpha1.StatefulSet, pod *v1.Pod) error // DeleteStatefulPod deletes a Pod in a StatefulSet. The pods PVCs are not deleted. If the delete is successful, // the returned error is nil. DeleteStatefulPod(set *appsv1alpha1.StatefulSet, pod *v1.Pod) error }
StatefulPodControlInterface defines the interface that StatefulSetController uses to create, update, and delete Pods, and to update the Status of a StatefulSet. It follows the design paradigms used for PodControl, but its implementation provides for PVC creation, ordered Pod creation, ordered Pod termination, and Pod identity enforcement. Like controller.PodControlInterface, it is implemented as an interface to provide for testing fakes.
func NewRealStatefulPodControl ¶
func NewRealStatefulPodControl( client clientset.Interface, setLister kruiseappslisters.StatefulSetLister, podLister corelisters.PodLister, pvcLister corelisters.PersistentVolumeClaimLister, recorder record.EventRecorder, ) StatefulPodControlInterface
NewRealStatefulPodControl returns a new realStatefulPodControl
type StatusUpdaterInterface ¶
type StatusUpdaterInterface interface { // UpdateStatefulSetStatus sets the set's Status to status. Implementations are required to retry on conflicts, // but fail on other errors. If the returned error is nil set's Status has been successfully set to status. UpdateStatefulSetStatus(set *appsv1alpha1.StatefulSet, status *appsv1alpha1.StatefulSetStatus) error }
StatusUpdaterInterface is an interface used to update the StatefulSetStatus associated with a StatefulSet. For any use other than testing, clients should create an instance using NewRealStatefulSetStatusUpdater.
func NewRealStatefulSetStatusUpdater ¶
func NewRealStatefulSetStatusUpdater( client clientset.Interface, setLister appslisters.StatefulSetLister) StatusUpdaterInterface
NewRealStatefulSetStatusUpdater returns a StatusUpdaterInterface that updates the Status of a StatefulSet, using the supplied client and setLister.