Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateClaims (0.27 sec)

  1. pkg/controller/statefulset/stateful_pod_control.go

    	UpdatePod(pod *v1.Pod) error
    	DeletePod(pod *v1.Pod) error
    	CreateClaim(claim *v1.PersistentVolumeClaim) error
    	GetClaim(namespace, claimName string) (*v1.PersistentVolumeClaim, error)
    	UpdateClaim(claim *v1.PersistentVolumeClaim) error
    }
    
    // StatefulPodControl defines the interface that StatefulSetController uses to create, update, and delete Pods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	ctrl.claimQueue.Add(claimKey)
    }
    
    // updateClaim runs in worker thread and handles "claim added",
    // "claim updated" and "periodic sync" events.
    func (ctrl *PersistentVolumeController) updateClaim(ctx context.Context, claim *v1.PersistentVolumeClaim) {
    	// Store the new claim version in the cache and do not process it if this is
    	// an old version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top