Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for DELETING (0.16 sec)

  1. pkg/controller/daemon/update.go

    				numUnavailable++
    				continue
    			}
    			switch {
    			case oldPod == nil && newPod == nil, oldPod != nil && newPod != nil:
    				// the manage loop will handle creating or deleting the appropriate pod, consider this unavailable
    				numUnavailable++
    			case newPod != nil:
    				// this pod is up to date, check its availability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	"k8s.io/klog/v2"
    )
    
    // This file contains the controller base functionality, i.e. framework to
    // process PV/PVC added/updated/deleted events. The real binding, provisioning,
    // recycling and deleting is done in pv_controller.go
    
    // ControllerParameters contains arguments for creation of a new
    // PersistentVolume controller.
    type ControllerParameters struct {
    	KubeClient                clientset.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// Note: we do not need to account for unsubscribed resources as these are handled by parent removal;
    	// See https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#deleting-resources.
    	// This means if there are only removals, we will not respond.
    	var logFiltered string
    	if !req.Delta.IsEmpty() && !requiresResourceNamesModification(w.TypeUrl) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// If a pod with the same unique name does not exist under the specified
    	// volume, this is a no-op.
    	// If a volume with the name volumeName does not exist in the list of
    	// attached volumes, this is a no-op.
    	// If after deleting the pod, the specified volume contains no other child
    	// pods, the volume is also deleted.
    	DeletePodFromVolume(podName types.UniquePodName, volumeName v1.UniqueVolumeName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repairip.go

    		if ipAddress.Spec.ParentRef.Namespace != svc.Namespace ||
    			ipAddress.Spec.ParentRef.Name != svc.Name {
    			// verify that there are no two Services with the same IP, otherwise
    			// it will keep deleting and recreating the same IPAddress changing the reference
    			refService, err := r.serviceLister.Services(ipAddress.Spec.ParentRef.Namespace).Get(ipAddress.Spec.ParentRef.Name)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. cmd/bucket-policy-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    		},
    	}
    	// Iterating over the cases and deleting the bucket policy and then asserting response.
    	for i, testCase := range testCases {
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    		recV4 := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		t.Fatalf("failure while saving CA certificate and key: %v", err)
    	}
    	if err := os.Remove(filepath.Join(pkiDir, kubeadmconstants.CAKeyName)); err != nil {
    		t.Fatalf("failure while deleting ca.key: %v", err)
    	}
    
    	notAfter, _ := time.Parse(time.RFC3339, "2026-01-02T15:04:05Z")
    
    	// create a valid config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    	// the namespace cleanup controller is very chatty.  It makes lots of discovery calls and then it makes lots of delete calls
    	// the ratelimiter negatively affects its speed.  Deleting 100 total items in a namespace (that's only a few of each resource
    	// including events), takes ~10 seconds by default.
    	nsKubeconfig := controllerContext.ClientBuilder.ConfigOrDie("namespace-controller")
    	nsKubeconfig.QPS *= 20
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. cmd/api-response.go

    	XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ DeleteResult" json:"-"`
    
    	// Collection of all deleted objects
    	DeletedObjects []DeletedObject `xml:"Deleted,omitempty"`
    
    	// Collection of errors deleting certain objects.
    	Errors []DeleteError `xml:"Error,omitempty"`
    }
    
    // PostResponse container for POST object request when success_action_status is set to 201
    type PostResponse struct {
    	Bucket   string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run.go

    	}
    
    	log.Infof("Running iptables restore with: %s and the following input:\n%v", iptVer.CmdToString(constants.IPTablesRestore), strings.TrimSpace(data))
    	// --noflush to prevent flushing/deleting previous contents from table
    	return cfg.ext.Run(constants.IPTablesRestore, iptVer, strings.NewReader(data), "--noflush")
    }
    
    func (cfg *IptablesConfigurator) executeCommands(iptVer, ipt6Ver *dep.IptablesVersion) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top