mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2017 The Kubernetes Authors.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package statefulset
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	apps "k8s.io/api/apps/v1beta1"
 | 
						|
	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
 | 
						|
	clientset "k8s.io/client-go/kubernetes"
 | 
						|
	"k8s.io/client-go/kubernetes/scheme"
 | 
						|
	appslisters "k8s.io/client-go/listers/apps/v1beta1"
 | 
						|
	"k8s.io/client-go/util/retry"
 | 
						|
)
 | 
						|
 | 
						|
// StatefulSetStatusUpdaterInterface 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.
 | 
						|
type StatefulSetStatusUpdaterInterface 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 *apps.StatefulSet, status *apps.StatefulSetStatus) error
 | 
						|
}
 | 
						|
 | 
						|
// NewRealStatefulSetStatusUpdater returns a StatefulSetStatusUpdaterInterface that updates the Status of a StatefulSet,
 | 
						|
// using the supplied client and setLister.
 | 
						|
func NewRealStatefulSetStatusUpdater(
 | 
						|
	client clientset.Interface,
 | 
						|
	setLister appslisters.StatefulSetLister) StatefulSetStatusUpdaterInterface {
 | 
						|
	return &realStatefulSetStatusUpdater{client, setLister}
 | 
						|
}
 | 
						|
 | 
						|
type realStatefulSetStatusUpdater struct {
 | 
						|
	client    clientset.Interface
 | 
						|
	setLister appslisters.StatefulSetLister
 | 
						|
}
 | 
						|
 | 
						|
func (ssu *realStatefulSetStatusUpdater) UpdateStatefulSetStatus(
 | 
						|
	set *apps.StatefulSet,
 | 
						|
	status *apps.StatefulSetStatus) error {
 | 
						|
	// don't wait due to limited number of clients, but backoff after the default number of steps
 | 
						|
	return retry.RetryOnConflict(retry.DefaultRetry, func() error {
 | 
						|
		set.Status = *status
 | 
						|
		_, updateErr := ssu.client.AppsV1beta1().StatefulSets(set.Namespace).UpdateStatus(set)
 | 
						|
		if updateErr == nil {
 | 
						|
			return nil
 | 
						|
		}
 | 
						|
		if updated, err := ssu.setLister.StatefulSets(set.Namespace).Get(set.Name); err == nil {
 | 
						|
			// make a copy so we don't mutate the shared cache
 | 
						|
			if copy, err := scheme.Scheme.DeepCopy(updated); err == nil {
 | 
						|
				set = copy.(*apps.StatefulSet)
 | 
						|
			} else {
 | 
						|
				utilruntime.HandleError(fmt.Errorf("error copying updated StatefulSet: %v", err))
 | 
						|
			}
 | 
						|
		} else {
 | 
						|
			utilruntime.HandleError(fmt.Errorf("error getting updated StatefulSet %s/%s from lister: %v", set.Namespace, set.Name, err))
 | 
						|
		}
 | 
						|
 | 
						|
		return updateErr
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
var _ StatefulSetStatusUpdaterInterface = &realStatefulSetStatusUpdater{}
 |