Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for pvprotection (0.3 sec)

  1. pkg/controller/volume/pvprotection/pv_protection_controller.go

    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting PV protection controller")
    	defer logger.Info("Shutting down PV protection controller")
    
    	if !cache.WaitForNamedCacheSync("PV protection", ctx.Done(), c.pvListerSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, c.runWorker, time.Second)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    	"k8s.io/kubernetes/pkg/controller/volume/expand"
    	persistentvolumecontroller "k8s.io/kubernetes/pkg/controller/volume/persistentvolume"
    	"k8s.io/kubernetes/pkg/controller/volume/pvcprotection"
    	"k8s.io/kubernetes/pkg/controller/volume/pvprotection"
    	"k8s.io/kubernetes/pkg/features"
    	quotainstall "k8s.io/kubernetes/pkg/quota/v1/install"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/utils/clock"
    	netutils "k8s.io/utils/net"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting PVC protection controller")
    	defer logger.Info("Shutting down PVC protection controller")
    
    	if !cache.WaitForNamedCacheSync("PVC protection", ctx.Done(), c.pvcListerSynced, c.podListerSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. .github/workflows/scorecard.yml

    # policy, and support documentation.
    
    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
      # To guarantee Maintained check is occasionally updated. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			// yet to sync the volume and add the pv deletion protection finalizer. The custom finalizer is some
    			// pre-existing finalizer, for example the pv-protection finalizer. When csi-migration is disabled,
    			// the migrated-to annotation will be removed shortly when updateVolumeMigrationAnnotationsAndFinalizers
    			// is called followed by adding back the in-tree pv protection finalizer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. docs/distributed/README.md

    ## Why distributed MinIO?
    
    MinIO in distributed mode can help you setup a highly-available storage system with a single object storage deployment. With distributed MinIO, you can optimally use storage devices, irrespective of their location in a network.
    
    ### Data protection
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:pv-protection-controller
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:pv-protection-controller
      subjects:
      - kind: ServiceAccount
        name: pv-protection-controller
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // The in-tree PV deletion protection finalizer is only added if the reclaimPolicy associated with the PV is `Delete`.
    // The in-tree PV deletion protection finalizer is removed if the reclaimPolicy associated with the PV is `Retain` or
    // `Recycle`, removing the finalizer is necessary to reflect the recalimPolicy updates on the PV.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/names/controller_names.go

    	ClusterRoleAggregationController             = "clusterrole-aggregation-controller"
    	PersistentVolumeClaimProtectionController    = "persistentvolumeclaim-protection-controller"
    	PersistentVolumeProtectionController         = "persistentvolume-protection-controller"
    	TTLAfterFinishedController                   = "ttl-after-finished-controller"
    	RootCACertificatePublisherController         = "root-ca-certificate-publisher-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/runtime/netpoll_kqueue.go

    	ev[0].flags = _EV_ADD | _EV_CLEAR
    	ev[0].fflags = 0
    	ev[0].data = 0
    
    	if goarch.PtrSize == 4 {
    		// We only have a pointer-sized field to store into,
    		// so on a 32-bit system we get no sequence protection.
    		// TODO(iant): If we notice any problems we could at least
    		// steal the low-order 2 bits for a tiny sequence number.
    		ev[0].udata = (*byte)(unsafe.Pointer(pd))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top